/* 우시장회관 가맹 본사 사이트 — 공통 스타일. 색·글씨는 설계안.md 3·4절에서 옴 */

:root {
  --paper: #F7F4EE;      /* 매장 흰 벽 */
  --paper-2: #EFE8DB;    /* 벽 그늘 */
  --wood: #D9B27C;       /* 테이블 원목 */
  --wood-light: #EBD9B8; /* 원목 밝은 결 */
  --wood-deep: #6E4B2A;  /* 몰딩·의자 진한 결 */
  --orange: #E8641B;     /* 손글씨 메뉴판 가격 */
  --red: #B8262B;        /* 육사시미 — 한 화면에 한 번 */
  --ink: #2A2723;        /* 로고 먹 */
  --ink-soft: #5C554C;
  --steel: #B9BDC1;      /* 배기관·양은 쟁반 */
  --steel-light: #DDE0E2;

  --serif: 'Gowun Batang', 'Nanum Myeongjo', serif;
  --hand: 'Nanum Pen Script', cursive;
  --sans: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;

  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.hand { font-family: var(--hand); }
.serif { font-family: var(--serif); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ── 버튼 ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 4px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  background: var(--orange); color: #fff;
  border: 1.5px solid var(--orange);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #d3560f; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.big { padding: 18px 34px; font-size: 17px; }

/* ── 상단 ── */
.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,238,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--steel-light);
}
.top .wrap { display: flex; align-items: center; height: 72px; gap: 28px; }
.logo img { height: 50px; width: auto; }
.nav { display: flex; gap: 30px; margin-left: auto; font-weight: 500; font-size: 15px; }
.nav a { position: relative; padding: 6px 0; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s; transform-origin: left; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.top-tel { font-family: var(--serif); font-weight: 700; font-size: 17px; letter-spacing: 0.02em; padding-left: 24px; border-left: 1px solid var(--steel-light); }
.top-tel small { display: block; font-family: var(--sans); font-weight: 400; font-size: 11px; color: var(--ink-soft); line-height: 1; margin-bottom: 4px; letter-spacing: 0; }
.burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; }
.burger span { display: block; height: 2px; background: var(--ink); margin: 6px 8px; transition: .2s; }
.mnav { display: none; }

/* ── 첫 화면 ── */
.hero { position: relative; overflow: hidden; }
.hero .wrap {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; padding-top: clamp(28px, 4vw, 56px); padding-bottom: clamp(40px, 6vw, 80px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em; color: var(--ink-soft); text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--wood-deep); }
.hero h1 {
  font-size: clamp(42px, 5.6vw, 74px);
  margin: 18px 0 20px; line-height: 1.12;
  color: var(--ink);
}
.hero h1 em { font-style: normal; color: var(--wood-deep); }
.hero .lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 34em; }
.hero .cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-photo { position: relative; margin: 0; }
.hero-photo::before {
  content: ''; position: absolute; inset: 8% -6% -6% 10%;
  background: var(--wood); border-radius: 3px; z-index: 0;
}
.hero-photo { max-width: 480px; margin-left: auto; width: 100%; }
.hero-photo img { position: relative; z-index: 1; border-radius: 3px; aspect-ratio: 4 / 4.4; height: auto; max-height: min(68vh, 600px); object-fit: cover; object-position: 50% 78%; width: 100%; box-shadow: 0 30px 60px -30px rgba(42,39,35,.45); }
.hero-photo figcaption {
  position: absolute; z-index: 2; right: -4px; bottom: 6%;
  background: var(--paper); color: var(--orange);
  font-family: var(--hand); font-size: 30px; line-height: 1; padding: 10px 18px 8px;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.3); transform: rotate(-2deg);
}
.seal {
  display: inline-block; vertical-align: top; margin-left: 14px; transform: translateY(6px);
  writing-mode: vertical-rl; font-family: var(--serif); font-weight: 700;
  font-size: 15px; letter-spacing: 0.25em; color: #fff; background: var(--red);
  padding: 10px 6px; line-height: 1; border-radius: 2px;
}

/* ── 굽다·썰다·끓이다·삶다 ── */
.verbs { background: var(--paper-2); padding: clamp(56px, 8vw, 110px) 0; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.sec-head p { color: var(--ink-soft); max-width: 36em; }
.verb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.verb {
  background: var(--paper); border-radius: 4px; overflow: hidden;
  display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--steel-light);
  transition: transform .25s ease, box-shadow .25s ease;
}
.verb:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -30px rgba(42,39,35,.5); }
.verb img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.verb .body { padding: 22px 22px 26px; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.verb .char { font-family: var(--serif); font-weight: 700; font-size: 64px; line-height: 0.9; color: var(--wood-deep); }
.verb h3 { font-size: 20px; margin-bottom: 6px; }
.verb h3 small { font-family: var(--hand); font-weight: 400; font-size: 20px; color: var(--orange); margin-left: 8px; }
.verb p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ── 낮과 밤 ── */
.daynight { display: grid; grid-template-columns: 1fr 1fr; }
.daynight > div { padding: clamp(48px, 6vw, 88px) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.day { background: var(--wood-light); color: var(--ink); }
.night { background: var(--wood-deep); color: var(--paper); }
.daynight .time { font-family: var(--serif); font-size: 15px; letter-spacing: 0.1em; opacity: .8; }
.daynight h2 { font-size: clamp(34px, 4vw, 54px); margin: 10px 0 18px; line-height: 1.15; }
.daynight .price { font-family: var(--hand); font-size: clamp(34px, 3.6vw, 48px); color: var(--orange); line-height: 1; margin: 6px 0 20px; }
.night .price { color: var(--wood); }
.daynight p { max-width: 30em; opacity: .92; }
.daynight .inner { max-width: 520px; }
.day .inner { margin-left: auto; }
.daynight ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 6px; font-size: 15px; }
.daynight li::before { content: '—'; margin-right: 10px; opacity: .5; }
.twice { grid-column: 1 / -1; background: var(--paper); text-align: center; padding: clamp(36px, 4vw, 56px) var(--gutter); }
.twice p { max-width: 42em; margin: 0 auto; font-size: clamp(17px, 1.6vw, 21px); font-family: var(--serif); line-height: 1.75; }
.twice strong { color: var(--wood-deep); }

/* ── 숫자 띠 ── */
.numbers { background: var(--wood); color: var(--ink); }
.numbers .wrap { display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 34px; padding-bottom: 34px; }
.num { text-align: center; padding: 10px 8px; border-left: 1px solid rgba(42,39,35,.18); }
.num:first-child { border-left: 0; }
.num b { display: block; font-family: var(--serif); font-size: clamp(30px, 3.4vw, 44px); line-height: 1.1; }
.num span { font-size: 13px; letter-spacing: 0.06em; opacity: .8; }

/* ── 마포역점 ── */
.store { padding: clamp(56px, 8vw, 110px) 0; }
.store .wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.store-photos { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.store-photos img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.store-photos img:first-child { grid-row: 1 / 3; aspect-ratio: 1; }
.store-card h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 8px; }
.store-card .sub { color: var(--ink-soft); margin-bottom: 26px; }
.store-card dl { display: grid; grid-template-columns: 86px 1fr; gap: 10px 16px; margin: 0 0 28px; font-size: 15px; }
.store-card dt { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.04em; padding-top: 2px; }
.store-card dd { margin: 0; }
.store-card .cta { display: flex; gap: 10px; flex-wrap: wrap; }
.plaque { margin-top: 30px; display: flex; gap: 14px; align-items: center; padding: 14px 16px; background: var(--paper-2); border-left: 3px solid var(--wood); font-size: 14px; color: var(--ink-soft); }
.plaque img { width: 96px; height: 56px; object-fit: cover; border-radius: 2px; }

/* ── 가맹 문의 (이메일로만) ── */
.fr-cta { background: var(--ink); color: var(--paper); padding: clamp(56px, 8vw, 96px) 0; }
.fr-cta .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.fr-cta .eyebrow.light { color: var(--wood); }
.fr-cta .eyebrow.light::before { background: var(--wood); }
.fr-cta h2 { font-size: clamp(30px, 3.8vw, 48px); margin: 16px 0 14px; }
.fr-cta p { opacity: .82; max-width: 30em; }
.fr-cta .mail { display: inline-block; margin-top: 30px; font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); letter-spacing: 0.01em; line-height: 1.15; color: var(--wood); border-bottom: 2px solid var(--wood); padding-bottom: 6px; word-break: break-all; }
.fr-cta .mail small { display: block; font-family: var(--sans); font-weight: 400; font-size: 13px; color: var(--paper); opacity: .7; margin-bottom: 8px; letter-spacing: 0.1em; }
.form-guide { background: rgba(247,244,238,.06); border: 1px solid rgba(247,244,238,.16); border-radius: 4px; padding: 26px 28px; }
.form-guide h3 { font-size: 18px; margin-bottom: 14px; color: var(--wood); }
.form-guide ol { margin: 0 0 20px; padding-left: 0; list-style: none; counter-reset: n; display: grid; gap: 8px; font-size: 15px; }
.form-guide ol li { counter-increment: n; display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: baseline; }
.form-guide ol li::before { content: counter(n); font-family: var(--serif); font-weight: 700; color: var(--orange); font-size: 18px; }
.form-guide .fine { color: rgba(247,244,238,.88); list-style: none; padding: 16px 0 0; margin: 0; border-top: 1px solid rgba(247,244,238,.22); display: grid; gap: 6px; font-size: 13.5px; opacity: .9; line-height: 1.65; }
.form-guide .fine li::before { content: '· '; }

/* ── 하단 ── */
footer { padding: 36px 0 30px; font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--steel-light); }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
footer img { height: 34px; width: auto; opacity: .85; margin-bottom: 10px; }
footer p { line-height: 1.8; }
footer .right { text-align: right; }

/* ══ 브랜드 장 ══ */
.bhero { padding: clamp(36px, 5vw, 72px) 0 clamp(48px, 6vw, 88px); }
.bhero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.bhero h1 { font-size: clamp(40px, 5vw, 66px); margin: 18px 0 22px; line-height: 1.15; }
.bhero .lead { color: var(--ink-soft); font-size: clamp(15px, 1.25vw, 17px); max-width: 32em; }
.bhero .lead + .lead { margin-top: 14px; }
.bhero .lead strong { color: var(--ink); font-weight: 700; }
.bhero .src { margin-top: 22px; font-size: 12px; color: var(--ink-soft); opacity: .8; letter-spacing: 0.02em; }
.bhero-photo { margin: 0; position: relative; }
.bhero-photo::before { content: ''; position: absolute; inset: 10% -5% -6% 8%; background: var(--wood-light); border-radius: 3px; }
.bhero-photo img { position: relative; border-radius: 3px; aspect-ratio: 4 / 3; height: auto; object-fit: cover; width: 100%; box-shadow: 0 30px 60px -30px rgba(42,39,35,.4); }

.ledger { background: var(--paper-2); padding: clamp(56px, 8vw, 100px) 0; }
.ways { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--steel); }
.way { display: grid; grid-template-columns: 120px 1fr 260px; gap: clamp(18px, 3vw, 40px); align-items: center; padding: 26px 0; border-bottom: 1px solid var(--steel); }
.way-char { font-family: var(--serif); font-weight: 700; font-size: clamp(56px, 6vw, 84px); line-height: .9; color: var(--wood-deep); }
.way h3 { font-size: 22px; margin-bottom: 6px; }
.way p { color: var(--ink-soft); font-size: 15px; max-width: 34em; }
.way img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 3px; }

.keeps { padding: clamp(56px, 8vw, 100px) 0; }
.keep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.keep { border-top: 3px solid var(--wood); padding: 22px 4px 0; }
.keep p.keep-no { font-size: 32px; color: var(--orange); line-height: 1; margin-bottom: 10px; }
.keep h3 { font-size: 21px; margin-bottom: 10px; }
.keep p { color: var(--ink-soft); font-size: 15px; }

.letter { background: var(--wood-light); padding: clamp(56px, 8vw, 100px) 0; }
.letter .wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.letter-photo { display: grid; gap: 12px; position: sticky; top: 92px; }
.letter-photo img { width: 100%; border-radius: 3px; object-fit: cover; }
.letter-photo img:first-child { aspect-ratio: 16 / 7; }
.letter-photo img:last-child { aspect-ratio: 4 / 5; }
.letter-body { background: var(--paper); padding: clamp(28px, 4vw, 56px); border-radius: 4px; box-shadow: 0 30px 60px -40px rgba(42,39,35,.35); }
.letter-body h2 { font-size: clamp(24px, 2.6vw, 34px); margin: 14px 0 22px; line-height: 1.35; }
.letter-body p { font-family: var(--serif); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.9; color: var(--ink); }
.letter-body p + p { margin-top: 18px; }
.letter-body .sign { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--steel-light); display: flex; align-items: baseline; gap: 14px; font-family: var(--sans); }
.letter-body .sign .hand { font-size: 24px; color: var(--orange); }
.letter-body .sign strong { font-family: var(--serif); font-size: 20px; }

.next-cta { padding: clamp(48px, 6vw, 80px) 0; text-align: center; }
.next-cta p { font-family: var(--serif); font-size: 20px; margin-bottom: 18px; }
.next-cta .cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 960px) {
  .bhero .wrap { grid-template-columns: 1fr; }
  .bhero-photo { order: -1; }
  .way { grid-template-columns: 72px 1fr; }
  .way img { grid-column: 2; }
  .way-char { font-size: 52px; }
  .keep-grid { grid-template-columns: 1fr; }
  .letter .wrap { grid-template-columns: 1fr; }
  .letter-photo { position: static; grid-template-columns: 1fr 1fr; }
  .letter-photo img:first-child, .letter-photo img:last-child { aspect-ratio: 4 / 3; }
}

/* ══ 메뉴 장 — 벽 메뉴판 ══ */
.mhero { padding: clamp(36px, 5vw, 64px) 0 clamp(28px, 4vw, 48px); }
.mhero h1 { font-size: clamp(34px, 4.6vw, 60px); margin: 18px 0 18px; line-height: 1.15; }
.mhero .lead { color: var(--ink-soft); max-width: 40em; }
.jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.jump a { padding: 9px 14px; border: 1px solid var(--steel); border-radius: 999px; font-size: 14px; font-weight: 500; background: #fff; }
.jump a:hover { border-color: var(--orange); color: var(--orange); }

.board { padding: clamp(40px, 6vw, 80px) 0; }
.board + .board { border-top: 1px solid var(--steel-light); }
.board-head { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; margin: 0 0 22px; }
.board-head h2 { font-size: clamp(26px, 3vw, 38px); }
.board-head .time { width: 100%; font-family: var(--serif); font-size: 14px; letter-spacing: 0.08em; color: var(--wood-deep); }
.board-head .note { color: var(--ink-soft); font-size: 14px; }
.board .board-head + .board-head, .board .board-photo + .board-head, .board .three-col + .board-head, .board .two-col + .board-head { margin-top: clamp(36px, 5vw, 60px); }
.badge { display: inline-block; font-family: var(--hand); font-size: 17px; color: var(--orange); border: 1px solid var(--orange); border-radius: 3px; padding: 0 7px; line-height: 1.3; vertical-align: 3px; margin-left: 6px; font-weight: 400; }

.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 26px; }
.dish { background: #fff; border: 1px solid var(--steel-light); border-radius: 4px; padding: 18px 18px 22px; text-align: center; }
.dish img { width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: 8px; }
.dish h3 { font-size: 19px; }
.dish .price { font-size: 30px; color: var(--orange); line-height: 1; margin: 6px 0 8px; }
.dish p:not(.price) { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

.lines { list-style: none; margin: 0; padding: 0; }
.lines li { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; border-bottom: 1px dashed var(--steel); font-size: 16px; }
.lines li.head { border-bottom: 1px solid var(--ink); font-family: var(--serif); font-weight: 700; font-size: 19px; padding-bottom: 8px; }
.lines li i { flex: 1; border-bottom: 1px dotted var(--steel); transform: translateY(-5px); }
.lines li b { font-size: 24px; color: var(--orange); font-weight: 400; white-space: nowrap; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(24px, 5vw, 64px); align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(20px, 3vw, 40px); align-items: start; }
.board-photo { margin: 26px 0 0; }
.board-photo img { width: 100%; aspect-ratio: 16 / 6; object-fit: cover; border-radius: 3px; }
.night-board { background: var(--paper-2); }

.set-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.set { background: var(--wood-deep); color: var(--paper); border-radius: 4px; padding: 22px 20px 24px; }
.set .set-no { font-size: 30px; color: var(--wood); line-height: 1; margin-bottom: 8px; }
.set .price { font-size: 32px; color: #fff; line-height: 1; margin-bottom: 12px; }
.set p:not(.price):not(.set-no) { font-size: 14px; opacity: .88; line-height: 1.6; }
.fine { margin-top: 22px; font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 960px) {
  .dish-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dish { padding: 14px 12px 16px; }
  .set-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .three-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .board-photo img { aspect-ratio: 16 / 9; }
  .lines li { font-size: 15px; }
  .lines li b { font-size: 21px; }
}
@media (max-width: 540px) {
  .set-grid { grid-template-columns: 1fr; }
  .lines li { flex-wrap: wrap; }
  .lines li b { white-space: normal; }
}

/* ══ 매장 장 ══ */
.shero { padding: clamp(32px, 4vw, 60px) 0 clamp(40px, 5vw, 72px); }
.shero .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.shero h1 { font-size: clamp(44px, 6vw, 78px); margin: 16px 0 20px; }
.shero .lead { color: var(--ink-soft); max-width: 30em; font-size: clamp(15px, 1.3vw, 18px); }
.shero .cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.shero-photo { margin: 0; position: relative; }
.shero-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 60px -30px rgba(42,39,35,.45); }
.shero-photo figcaption { position: absolute; left: 0; bottom: -14px; background: var(--paper); color: var(--orange); font-family: var(--hand); font-size: 26px; line-height: 1; padding: 9px 16px 7px; transform: rotate(-1.5deg); box-shadow: 0 8px 20px -10px rgba(0,0,0,.3); }

.sgal-wrap { padding: clamp(20px, 3vw, 36px) 0 clamp(40px, 6vw, 72px); }
.sgal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sgal img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 3px; }
.sgal img:nth-child(4) { aspect-ratio: 3 / 4; object-position: center; }

.sinfo { background: var(--paper-2); padding: clamp(48px, 7vw, 90px) 0; }
.sinfo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 5vw, 72px); }
.sinfo dl { margin: 0; display: grid; grid-template-columns: 96px 1fr; gap: 0; align-content: start; }
.sinfo dt { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); padding: 16px 0; border-top: 1px solid var(--steel); }
.sinfo dd { margin: 0; padding: 16px 0; border-top: 1px solid var(--steel); font-size: 16px; }
.sinfo dd .sub { display: inline-block; margin-top: 4px; font-size: 13.5px; color: var(--ink-soft); }
.sinfo dd a { border-bottom: 1px solid var(--orange); color: var(--orange); }

.routes-wrap { padding: clamp(48px, 7vw, 90px) 0; }
.routes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.route { border-top: 3px solid var(--wood-deep); padding: 20px 2px 0; }
.route-tag { font-family: var(--hand); font-size: 28px; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.route h3 { font-size: 20px; margin-bottom: 8px; }
.route p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.nextstore { background: var(--wood-deep); color: var(--paper); padding: clamp(48px, 7vw, 90px) 0; }
.nextstore .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.nextstore figure { margin: 0; }
.nextstore figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; }
.nextstore h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 16px 0 16px; }
.nextstore p { opacity: .86; max-width: 30em; }
.nextstore .cta { margin-top: 26px; }
.eyebrow.light { color: var(--wood); }
.eyebrow.light::before { background: var(--wood); }

/* ══ 가맹문의 장 ══ */
.fhero { padding: clamp(32px, 4vw, 60px) 0 clamp(44px, 6vw, 80px); }
.fhero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.fhero h1 { font-size: clamp(38px, 5vw, 66px); margin: 16px 0 22px; line-height: 1.15; }
.fhero .lead { color: var(--ink-soft); max-width: 32em; font-size: clamp(15px, 1.3vw, 17px); }
.fhero .cta { margin-top: 30px; }
.fhero-photo { margin: 0; }
.fhero-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 60px -30px rgba(42,39,35,.45); }

.who-wrap { background: var(--paper-2); padding: clamp(48px, 7vw, 90px) 0; }
.who { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.whocard { background: var(--paper); border: 1px solid var(--steel-light); border-radius: 4px; padding: clamp(24px, 3vw, 38px); }
.who-tag { font-family: var(--hand); font-size: 28px; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.whocard h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 14px; line-height: 1.25; }
.whocard p { color: var(--ink-soft); font-size: 15px; }
.whocard ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 8px; font-size: 15px; }
.whocard li { padding-left: 18px; position: relative; }
.whocard li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--wood); border-radius: 50%; }

.support-wrap { padding: clamp(48px, 7vw, 90px) 0; }
.support { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.supcard { border-top: 3px solid var(--wood); padding: 20px 2px 0; }
.supcard h3 { font-size: 20px; margin-bottom: 10px; }
.supcard p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

.steps-wrap { background: var(--wood-light); padding: clamp(48px, 7vw, 90px) 0; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-bottom: 1px solid rgba(110,75,42,.22); }
.step-no { font-family: var(--serif); font-weight: 700; font-size: 34px; color: var(--wood-deep); line-height: 1; }
.step h3 { font-size: 19px; margin-bottom: 5px; }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.notice-wrap { padding: clamp(40px, 6vw, 72px) 0; }
.notice-wrap h2 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 18px; }
.notice { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; max-width: 60em; }
.notice li { padding-left: 20px; position: relative; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.notice li::before { content: '·'; position: absolute; left: 6px; }

@media (max-width: 960px) {
  .shero .wrap, .fhero .wrap, .nextstore .wrap { grid-template-columns: 1fr; }
  .shero-photo, .fhero-photo { order: -1; }
  .shero-photo figcaption { font-size: 22px; bottom: -12px; }
  .sgal { grid-template-columns: 1fr 1fr; }
  .sinfo-grid { grid-template-columns: 1fr; }
  .routes, .support { grid-template-columns: 1fr 1fr; }
  .who { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .nextstore figure { order: -1; }
}
@media (max-width: 540px) {
  .routes, .support { grid-template-columns: 1fr; }
  .sinfo dl { grid-template-columns: 78px 1fr; }
}

main [id] { scroll-margin-top: 88px; }

/* ── 등장 움직임 ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .verb { transition: none; }
  html { scroll-behavior: auto; }
}

/* ── 휴대폰 ── */
@media (max-width: 960px) {
  .nav, .top-tel { display: none; }
  .burger { display: block; }
  .mnav { position: fixed; inset: 72px 0 0; background: var(--paper); z-index: 49; padding: 24px var(--gutter); flex-direction: column; gap: 4px; }
  .mnav.open { display: flex; }
  .mnav a { font-family: var(--serif); font-size: 26px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--steel-light); }
  .mnav .tel { margin-top: 20px; font-family: var(--sans); font-size: 16px; border: 0; color: var(--orange); font-weight: 700; }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 28px; }
  .hero-photo { order: -1; max-width: none; margin: 0 0 10px; width: 100%; }
  .hero-photo img { aspect-ratio: 4 / 3; max-height: 40vh; object-position: 50% 72%; }
  .hero-photo::before { inset: 10% -4% -5% 8%; }
  .hero-photo figcaption { font-size: 22px; right: 0; bottom: 4%; padding: 8px 14px 6px; }
  .verb-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .verb .body { padding: 16px; gap: 12px; }
  .verb .char { font-size: 48px; }
  .daynight { grid-template-columns: 1fr; }
  .day .inner { margin-left: 0; }
  .numbers .wrap { grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .num:nth-child(3) { border-left: 0; }
  .store .wrap, .fr-cta .wrap { grid-template-columns: 1fr; }
  footer .right { text-align: left; }
  .form-guide { padding: 20px; }
}
@media (max-width: 540px) {
  .verb-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .store-photos { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .store-photos img:first-child { grid-column: 1 / -1; grid-row: auto; }
  .store-card dl { grid-template-columns: 72px 1fr; }
}
