@charset "utf-8";
/* =========================================================
   SNACK VR LOUNGE 프랜차이즈 페이지 전용 스타일 v2
   대상: franchise.html 단독 (site.css 다음에 로드)

   2026-08 리디자인(시안 B · Stripe 시스템)에 맞춘 재스킨.
   토큰(--ink/--steel/--indigo/--frost 등)은 site.css 를 상속한다.
   원칙: 그림자 없음 · radius 4px · 깊이는 배경 색조 계층으로 ·
        제목 얇게(300) + 카드 제목만 굵게(700)
   ※ nginx가 css를 30일 캐시하므로 수정 시 franchise.html 의 ?v= 를 함께 올릴 것.
========================================================= */

.page-franchise { background: var(--white); color: var(--ink); }

/* ── 공통 섹션 골격 ── */
.fr-sec { padding: var(--secpad) 0; }
.fr-sec.alt { background: var(--mist); }
.fr-label { font-size: 14px; color: var(--indigo); font-weight: 400; margin-bottom: 14px; }
.fr-h2 {
  font-size: clamp(30px, 3.2vw, 44px); font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.12; color: var(--ink);
}
.fr-sub { margin-top: 16px; font-size: 18px; font-weight: 300; color: var(--steel); line-height: 1.6; max-width: 720px; }
.fr-note { margin-top: 18px; font-size: 13.5px; font-weight: 300; color: var(--slate); line-height: 1.7; }
.fr-note strong { font-weight: 700; color: var(--ink); }
.fr-quote {
  margin-top: 40px; padding: 0; border: 0; background: transparent;
  font-size: clamp(21px, 2vw, 27px); font-weight: 300;
  color: var(--ink); line-height: 1.5; letter-spacing: -0.02em; max-width: 920px;
}
.fr-quote strong { font-weight: 700; color: var(--indigo); }

/* ── 히어로 ── */
.fr-hero {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: flex-end; overflow: hidden; padding: 0;
}
.fr-hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fr-hero .ovl {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,27,49,.35) 0%, rgba(6,27,49,.15) 45%, rgba(6,27,49,.88) 100%);
}
.fr-hero .container { position: relative; z-index: 1; padding-bottom: 96px; }
.fr-hero .brandline { font-size: 14px; font-weight: 700; letter-spacing: .22em; color: var(--indigo-h); margin-bottom: 16px; }
.fr-hero h1 {
  font-size: clamp(40px, 4.4vw, 60px); font-weight: 300;
  letter-spacing: -0.025em; line-height: 1.1; color: #fff;
}
.fr-hero h1 strong { font-weight: 700; color: var(--indigo-h); }
.fr-hero .sub { margin-top: 16px; font-size: clamp(18px, 1.7vw, 22px); font-weight: 300; color: rgba(255,255,255,.92); }
.fr-hero .copy { margin-top: 12px; font-size: 16px; font-weight: 300; color: rgba(255,255,255,.72); }
.fr-cta {
  display: inline-block; margin-top: 32px;
  background: var(--indigo); color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 400; padding: 14px 28px; border-radius: 4px;
}
.fr-cta:hover { background: var(--indigo-h); }

/* ── 통계 카드 ── */
.fr-stats { margin-top: 40px; display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); gap: 16px; }
.fr-stat { background: var(--mist); border: 1px solid var(--frost); border-radius: 4px; padding: 24px; }
.fr-stat b {
  display: block; font-size: clamp(30px, 3vw, 44px); font-weight: 700; color: var(--indigo);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1.05;
}
.fr-stat span { display: block; margin-top: 8px; font-size: 14px; font-weight: 300; color: var(--steel); }
.fr-src { margin-top: 12px; font-size: 12.5px; font-weight: 300; color: var(--smoke); }

/* ── 대비 표 ── */
.fr-tablewrap { margin-top: 34px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fr-table {
  width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--frost); border-radius: 4px; overflow: hidden;
  font-size: 15px;
}
.fr-table th, .fr-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--frost); font-weight: 300; }
.fr-table thead th { background: var(--mist); font-weight: 700; color: var(--ink); }
.fr-table thead th:last-child { color: var(--indigo); }
.fr-table tbody tr:last-child th, .fr-table tbody tr:last-child td { border-bottom: 0; }
.fr-table tbody th { color: var(--slate); white-space: nowrap; }
.fr-table td.win { font-weight: 400; color: var(--ink); }

/* ── 매장 타입 ── */
.fr-types { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fr-type { position: relative; background: var(--white); border: 1px solid var(--frost); border-radius: 4px; padding: 28px 24px; }
.fr-type.reco { border: 2px solid var(--indigo); }
.fr-type .reco-badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--indigo); color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 4px; padding: 4px 12px;
}
.fr-type .tname { font-size: 13px; font-weight: 700; color: var(--indigo); letter-spacing: .08em; }
.fr-type h4 { margin-top: 6px; font-size: 19px; font-weight: 700; color: var(--ink); }
.fr-type .area { margin-top: 4px; font-size: 14px; color: var(--steel); }
.fr-type ul { margin-top: 14px; padding: 0; list-style: none; }
.fr-type li {
  position: relative; padding: 6px 0 6px 16px;
  font-size: 14px; font-weight: 300; color: var(--steel); line-height: 1.5;
}
.fr-type li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--indigo);
}
.fr-conds { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.fr-cond {
  background: var(--peri); border: 1px solid var(--lilac); color: var(--indigo);
  font-size: 13.5px; border-radius: 4px; padding: 8px 16px;
}

/* ── 역할 분담 ── */
.fr-roles { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fr-role { background: var(--white); border: 1px solid var(--frost); border-radius: 8px; padding: 6px 28px 16px; }
.rhead { display: flex; align-items: center; gap: 12px; padding: 20px 0 16px; border-bottom: 1px solid var(--frost); }
.rhead .pill { font-size: 12px; font-weight: 700; border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.fr-role.hq .rhead .pill { background: var(--indigo); color: #fff; }
.fr-role.owner .rhead .pill { background: var(--frost); color: var(--steel); }
.rhead h4 { font-size: 19px; font-weight: 700; color: var(--ink); }
.fr-role ul { margin: 4px 0 0; padding: 0; list-style: none; }
.fr-role li {
  position: relative; padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--frost);
  font-size: 15px; font-weight: 300; color: var(--steel); line-height: 1.55;
}
.fr-role li:last-child { border-bottom: 0; }
.fr-role li::before {
  position: absolute; left: 0; top: 13px;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; text-align: center; line-height: 20px; font-weight: 700;
}
.fr-role.hq li::before { content: "✓"; background: var(--peri); color: var(--indigo); }
.fr-role.owner li::before { content: "•"; background: var(--mist); color: var(--slate); }
.fr-split {
  margin-top: 24px; background: var(--indigo); color: #fff; border-radius: 8px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.fr-split b { font-size: 22px; font-weight: 300; letter-spacing: -0.01em; }
.fr-split b em { font-style: normal; font-weight: 700; font-size: 38px; vertical-align: -2px; }
.fr-split small { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.75); }

/* ── 타임라인 ── */
.fr-steps { margin-top: 44px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.fr-step { position: relative; background: var(--white); border: 1px solid var(--frost); border-radius: 4px; padding: 24px 20px; }
.fr-step .d { font-size: 12.5px; font-weight: 700; color: var(--indigo); letter-spacing: .04em; }
.fr-step h5 { margin-top: 8px; font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.fr-step p { margin-top: 8px; font-size: 13px; font-weight: 300; color: var(--steel); line-height: 1.55; }
.fr-step::after {
  content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  color: var(--lilac); font-size: 16px; z-index: 1;
}
.fr-step:last-child::after { display: none; }

/* ── 적합 / 부적합 ── */
.fr-fit { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fr-fitcol { background: var(--white); border: 1px solid var(--frost); border-radius: 8px; padding: 6px 28px 16px; }
.fr-fitcol .rhead h4 { color: var(--ink); }
.fr-fitcol.ok .rhead .pill { background: #e9f8f1; color: #14653f; }
.fr-fitcol.no .rhead .pill { background: #fdedeb; color: #972e20; }
.fr-fitcol ul { margin: 4px 0 0; padding: 0; list-style: none; }
.fr-fitcol li {
  position: relative; padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--frost);
  font-size: 15px; font-weight: 300; color: var(--steel); line-height: 1.55;
}
.fr-fitcol li:last-child { border-bottom: 0; }
.fr-fitcol li::before {
  position: absolute; left: 0; top: 13px;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; text-align: center; line-height: 20px; font-weight: 700;
}
.fr-fitcol.ok li::before { content: "✓"; background: #e9f8f1; color: #19a974; }
.fr-fitcol.no li::before { content: "×"; background: #fdedeb; color: #d9534f; }

/* ── 상담 폼 ── */
.fr-form-wrap {
  margin-top: 44px; background: var(--white); border: 1px solid var(--frost);
  border-radius: 4px; padding: 36px; max-width: 760px;
}
.fr-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fr-form .field { margin-bottom: 14px; }
.fr-form label { display: block; font-size: 14px; color: var(--ink); margin-bottom: 6px; }
.fr-form label .req { color: #d9534f; }
.fr-form input, .fr-form select {
  width: 100%; background: var(--white); border: 1px solid var(--frost); border-radius: 4px;
  padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink);
}
.fr-form input:focus, .fr-form select:focus {
  outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--peri);
}
.fr-form .agree { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 20px; font-size: 13.5px; font-weight: 300; color: var(--steel); line-height: 1.55; }
.fr-form .agree input { width: auto; margin-top: 3px; accent-color: var(--indigo); }
.fr-form .agree a { color: var(--indigo); }
.fr-form .submit {
  width: 100%; border: 0; cursor: pointer; border-radius: 4px;
  background: var(--indigo); color: #fff; font: inherit; font-size: 16px;
  padding: 15px;
}
.fr-form .submit:hover { background: var(--indigo-h); }
.fr-form .submit:disabled { opacity: .6; cursor: default; }
.fr-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fr-form .form-status { display: none; margin-top: 14px; border-radius: 4px; padding: 12px 14px; font-size: 14px; line-height: 1.5; }
.fr-form .form-status.show { display: block; }
.fr-form .form-status.ok { background: #e9f8f1; border: 1px solid #b3e3cb; color: #14653f; }
.fr-form .form-status.err { background: #fdedeb; border: 1px solid #f4c5be; color: #972e20; }
.fr-form .form-status.wait { background: #eef6fd; border: 1px solid #c3ddf3; color: #1f5480; }

/* ── 인디고 상담 폼 섹션(.cta-band.fr-consult) 오버라이드 ── */
.fr-consult { padding: var(--secpad) 0; }
.fr-consult .eyebrow { color: rgba(255, 255, 255, .8); }
.fr-consult h3.sec { color: #fff; }
.fr-consult p.sub { color: rgba(255, 255, 255, .78); }
.fr-consult .fr-form-wrap { border: 0; }
.fr-consult .fr-legal { border-top-color: rgba(255, 255, 255, .22); color: rgba(255, 255, 255, .6); }

/* ── 법적 고지 ── */
.fr-legal {
  margin-top: 44px; border-top: 1px solid var(--frost); padding-top: 22px;
  font-size: 12.5px; font-weight: 300; color: var(--smoke); line-height: 1.75; max-width: 860px;
}

/* ── 반응형 ── */
@media (max-width: 980px) {
  .fr-axes, .fr-types { grid-template-columns: repeat(2, 1fr); }
  .fr-steps { grid-template-columns: repeat(2, 1fr); }
  .fr-step::after { display: none; }
  .fr-results { grid-template-columns: 1fr; }
  .fr-roles, .fr-fit { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fr-sec { padding: 64px 0; }
  .fr-axes, .fr-types, .fr-steps { grid-template-columns: 1fr; }
  .fr-stats { grid-template-columns: 1fr; }
  .fr-form .row2 { grid-template-columns: 1fr; }
  .fr-hero { padding-top: 120px; }
}

/* ── 전화 상담 CTA · 사후지원 (메인 타이포 결 유지) ── */
.fr-tel { margin-top: 18px; font-size: 15px; font-weight: 300; color: rgba(255, 255, 255, .85); }
.fr-tel a { color: #fff; font-weight: 700; text-decoration: none; font-size: 18px; }
.fr-tel small { color: rgba(255, 255, 255, .6); margin-left: 6px; }

.fr-after {
  margin-top: 26px; font-size: clamp(18px, 1.7vw, 22px); font-weight: 300;
  color: var(--ink); line-height: 1.55; letter-spacing: -0.015em;
}
.fr-after strong { font-weight: 700; color: var(--indigo); }

.fr-consult p.sub a.tel { color: #fff; font-weight: 700; text-decoration: none; }

/* ── 카드 호버 인터랙션 ── */
.fr-role, .fr-fitcol, .fr-type, .fr-step, .fr-stat {
  transition: transform .22s ease, border-color .22s ease;
}
.fr-role:hover, .fr-fitcol:hover, .fr-type:hover, .fr-step:hover, .fr-stat:hover {
  transform: translateY(-4px); border-color: var(--lilac);
}
.fr-type.reco:hover { border-color: var(--indigo); }

.fr-role li, .fr-fitcol li {
  transition: color .15s ease, transform .2s ease;
  transform-origin: left center;
}
.fr-role li:hover, .fr-fitcol li:hover {
  color: var(--ink); transform: scale(1.04);
}
.rhead h4 { transition: color .2s ease; }
.fr-role:hover .rhead h4, .fr-fitcol:hover .rhead h4 { color: var(--indigo); }

.fr-table tbody tr { transition: background .15s ease; }
.fr-table tbody tr:hover { background: var(--mist); }

/* ── 매장 콘셉트 갤러리 ── */
.fr-gallery { margin-top: 64px; }
.fr-gtitle {
  font-size: clamp(20px, 2vw, 26px); font-weight: 300;
  color: var(--ink); letter-spacing: -0.02em;
}
.fr-gtitle strong { font-weight: 700; color: var(--indigo); }
.fr-gallery figure { margin: 0; }
.fr-gallery img {
  width: 100%; object-fit: cover; display: block;
  border-radius: 8px; background: var(--mist);
  transition: transform .5s ease;
}
.fr-gallery figure:hover img { transform: scale(1.03); }
.fr-gallery figcaption { padding: 10px 2px 0; font-size: 12.5px; font-weight: 300; color: var(--smoke); }
.g-main { margin-top: 24px; }
.g-main img { aspect-ratio: 21/9; }
.g-sub { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.g-sub img { aspect-ratio: 16/9; }
@media (max-width: 640px) {
  .g-sub { grid-template-columns: 1fr; }
  .g-main img { aspect-ratio: 16/9; }
}
