/* =============================================================================
   풀악셀모터스 (Full Accel Motors) — 공통 스타일시트
   -----------------------------------------------------------------------------
   구성
     1. 디자인 토큰       2. 리셋 / 기본 타이포
     3. 레이아웃          4. 버튼 / 배지
     5. 헤더 / 내비게이션  6. 히어로
     7. 레이싱 스트라이프  8. 섹션 공통
     9. 카드 / 그리드     10. 스텝 / 표 / FAQ
    11. 폼               12. CTA 밴드 / 푸터
    13. 모바일 퀵바       14. 유틸 / 모션
    15. 예약 페이지        16. 접수 완료 화면
    17. 카카오톡 보내기 안내
============================================================================= */

/* --- 1. 디자인 토큰 ------------------------------------------------------ */
:root {
  --wrap: 1160px;
  --gutter: 20px;
  --header-h: 66px;

  /* 밝은 면 */
  --paper: #ffffff;
  --paper-2: #f4f5f7;
  --paper-3: #e9ecf1;

  /* 어두운 면 */
  --ink: #101318;
  --ink-2: #171c24;
  --ink-3: #232b37;

  --text: #191d24;
  --text-muted: #5d6572;
  --text-invert: #f2f4f7;
  --text-invert-muted: #a3adbb;

  /* 포인트 컬러 */
  --accent: #ff5a1f;        /* 그래픽 · 어두운 배경 위 텍스트 */
  --accent-strong: #d4400b; /* 흰 글자를 얹는 버튼 배경 */
  --accent-hover: #b83607;  /* 버튼 hover */
  --accent-text: #c43a09;   /* 밝은 배경 위 작은 주황 텍스트 (대비 4.5:1 이상) */
  --accent-2: #ffa41f;
  --accent-soft: #fff1ea;
  --accent-ink: #ffffff;
  --accent-glow: rgba(212, 64, 11, .32);

  --line: #e2e5ea;
  --line-dark: #2b3340;
  --grid-line: rgba(255, 255, 255, .035);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16, 20, 28, .06), 0 2px 8px rgba(16, 20, 28, .05);
  --shadow-md: 0 10px 34px rgba(16, 20, 28, .12);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- 2. 리셋 / 기본 타이포 ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;   /* 한글 줄바꿈을 어절 단위로 */
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.25; letter-spacing: -.03em; font-weight: 900; }
h1 { font-size: clamp(2.3rem, 6vw, 4.25rem); line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2.2vw, 1.375rem); letter-spacing: -.02em; }
p  { margin: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 스크린리더 전용 */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  padding: 10px 16px; border-radius: var(--radius-sm);
  background: var(--accent-strong); color: var(--accent-ink); font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* --- 3. 레이아웃 --------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.stack > * + * { margin-top: 16px; }

/* --- 4. 버튼 / 배지 ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .975rem; font-weight: 700; letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .15s var(--ease), background-color .15s var(--ease),
              border-color .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent-strong); color: var(--accent-ink);
  box-shadow: 0 8px 22px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 12px 28px var(--accent-glow); }

.btn--dark { background: var(--ink); color: var(--text-invert); }
.btn--dark:hover { background: var(--ink-3); }

.btn--ghost { border-color: var(--line); background: var(--paper); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }

.btn--outline-light { border-color: rgba(255, 255, 255, .35); color: var(--text-invert); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
}
.badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .22);
}
.badge--dark { background: rgba(255, 255, 255, .1); color: var(--text-invert); }

/* --- 5. 헤더 / 내비게이션 ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(16, 19, 24, .9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-invert);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 12px 36px rgba(0, 0, 0, .35); }
.site-header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.logo__mark {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent) 60%, var(--accent-2));
  color: #fff; font-size: .8rem; letter-spacing: .02em;
  box-shadow: 0 6px 14px var(--accent-glow);
}
.logo__text { font-size: 1.05rem; letter-spacing: -.02em; line-height: 1.15; }
.logo__text small {
  display: block;
  font-size: .625rem; font-weight: 700; letter-spacing: .18em;
  color: var(--text-invert-muted);
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .95rem; font-weight: 600; white-space: nowrap;
  color: var(--text-invert-muted);
  transition: color .15s var(--ease), background-color .15s var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.nav__link--home { display: none; }
.nav__link.is-active {
  color: #fff;
  background: rgba(255, 90, 31, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 90, 31, .55);
}

.header__cta { display: flex; align-items: center; gap: 10px; }
.header__tel {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: #fff; white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--line-dark); border-radius: 10px;
  background: transparent; color: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; margin: 4px auto;
  background: currentColor; border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .header__tel { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px var(--gutter) 24px;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { padding: 14px 12px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav__link--home { display: block; }
  .nav__link.is-active { box-shadow: inset 3px 0 0 var(--accent); border-radius: var(--radius-sm); }
  .header__cta .btn { padding: 10px 16px; font-size: .875rem; }
}
/* 초소형 화면: 헤더 버튼은 숨기고 하단 퀵바가 연락 기능을 담당 */
@media (max-width: 360px) {
  .header__cta .btn { display: none; }
  .logo { gap: 8px; }
}

/* --- 6. 히어로 ----------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 112px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(900px 440px at 82% -10%, rgba(255, 90, 31, .26), transparent 62%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--text-invert);
  overflow: hidden;
}
/* 어두운 면 공통: 은은한 격자 텍스처 */
.hero::before, .section--dark::before, .cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .35));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .35));
}

.hero__inner { position: relative; z-index: 1; max-width: 780px; }
.hero__title { margin-top: 18px; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__lead {
  margin-top: 22px;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  color: var(--text-invert-muted);
}
.hero__actions { margin-top: 32px; }

/* 핵심 수치 */
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 20px 36px;
  margin: 40px 0 0; padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.hero__stats > div { display: flex; flex-direction: column-reverse; gap: 3px; }
.hero__stats dd {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 900; letter-spacing: -.02em;
  line-height: 1.1; color: #fff;
}
.hero__stats dd small { margin-left: 3px; font-size: .95rem; font-weight: 700; color: var(--text-invert-muted); }
.hero__stats dt { font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--text-invert-muted); }

/* 하위 페이지용 축약 히어로 */
.page-hero { padding: clamp(48px, 8vw, 84px) 0 clamp(40px, 6vw, 64px); }
.page-hero .hero__title { margin-top: 14px; font-size: clamp(1.9rem, 4.6vw, 3rem); }
.page-hero .hero__lead { margin-top: 14px; }

.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .85rem; color: var(--text-invert-muted);
}
.breadcrumb a:hover { color: #fff; }

/* --- 7. 레이싱 스트라이프 (티커) ------------------------------------------ */
.ticker-wrap {
  overflow: hidden;
  padding: 24px 0;
  background: linear-gradient(180deg, var(--ink-2) 0 50%, var(--paper) 50% 100%);
}
.ticker {
  position: relative;
  background: var(--accent-strong); color: #fff;
  transform: rotate(-1.4deg) scale(1.04);
  box-shadow: 0 16px 40px rgba(212, 64, 11, .35);
  overflow: hidden;
}
.ticker::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, .07) 0 3px, transparent 3px 22px);
}
.ticker__track {
  display: flex; width: max-content;
  animation: ticker 48s linear infinite;
}
.ticker__track span {
  display: inline-flex; align-items: center; gap: 30px;
  padding: 12px 15px 12px 15px;
  font-size: .85rem; font-weight: 800; letter-spacing: .08em; white-space: nowrap;
}
.ticker__track span::after {
  content: ""; width: 7px; height: 7px; flex: none;
  background: #fff; opacity: .75; transform: rotate(45deg);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* --- 8. 섹션 공통 -------------------------------------------------------- */
.section { padding: clamp(60px, 8.5vw, 104px) 0; }
.section--muted { background: var(--paper-2); }
.section--dark { position: relative; background: var(--ink-2); color: var(--text-invert); }
.section--dark > .wrap { position: relative; }
.section--dark .section__desc { color: var(--text-invert-muted); }

.section__head { max-width: 720px; margin-bottom: clamp(30px, 4.5vw, 48px); }
.section__head h2 { text-wrap: balance; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  font-size: .8rem; font-weight: 800; letter-spacing: .16em;
  color: var(--accent-text); text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: currentColor; }
/* 어두운 배경에서는 밝은 주황을 그대로 사용 */
.hero .eyebrow,
.section--dark .eyebrow,
.cta-band .eyebrow { color: var(--accent); }
.section__desc { margin-top: 14px; color: var(--text-muted); font-size: 1.02rem; }

/* --- 9. 카드 / 그리드 ---------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card--link::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent) 70%, var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.card--link:hover, .card--link:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 31, .45);
  box-shadow: var(--shadow-md);
}
.card--link:hover::before, .card--link:focus-visible::before { transform: scaleX(1); }

.card__num {
  position: absolute; top: 24px; right: 26px;
  font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  color: var(--text-muted); opacity: .55;
}
.card__icon {
  width: 50px; height: 50px; margin-bottom: 20px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 8px 18px var(--accent-glow);
}
.card__title { margin-bottom: 10px; }
.card__text { color: var(--text-muted); font-size: .95rem; }
.card__list { margin-top: 16px; font-size: .925rem; color: var(--text-muted); }
.card__list li { position: relative; padding-left: 18px; }
.card__list li + li { margin-top: 6px; }
.card__list li::before {
  content: ""; position: absolute; left: 4px; top: .72em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 18px;
  font-weight: 700; font-size: .925rem; color: var(--accent-text);
  transition: gap .2s var(--ease);
}
.card--link:hover .card__more { gap: 12px; }

.section--dark .card {
  background: var(--ink-3);
  border-color: var(--line-dark);
  box-shadow: none;
}
.section--dark .card__text,
.section--dark .card__list { color: var(--text-invert-muted); }
.section--dark .card__num { color: var(--text-invert-muted); }
.section--dark .card__more { color: var(--accent); }

/* 이미지 자리 — 사진 교체 전에는 어두운 스펙 패널처럼 보이도록 */
.media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(60% 55% at 72% 22%, rgba(255, 90, 31, .28), transparent 70%),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(160deg, var(--ink-3), var(--ink));
  background-size: auto, 28px 28px, 28px 28px, auto;
  border: 1px solid var(--line-dark);
  color: var(--text-invert-muted); font-size: .85rem; font-weight: 600; text-align: center;
  overflow: hidden;
}
.media--text { padding: 24px; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--wide { aspect-ratio: 16 / 9; }

/* --- 10. 스텝 / 표 / FAQ ------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.steps--row { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step {
  position: relative;
  padding: 26px 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid; place-items: center;
  min-width: 42px; height: 42px; padding: 0 12px; margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: .85rem; font-weight: 800; letter-spacing: .08em;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.step p { color: var(--text-muted); font-size: .925rem; }

.section--dark .step { background: var(--ink-3); border-color: var(--line-dark); }
.section--dark .step::before { background: var(--accent-strong); box-shadow: 0 6px 14px var(--accent-glow); }
.section--dark .step h3 { color: var(--text-invert); }
.section--dark .step p { color: var(--text-invert-muted); }

/* 한 줄로 놓이는 스텝은 열 수를 고정하고 화살표로 연결 */
@media (min-width: 1000px) {
  .steps--4 { grid-template-columns: repeat(4, 1fr); }
  .steps--4 .step:not(:last-child)::after { content: ""; }
}
@media (min-width: 1100px) {
  .steps--5 { grid-template-columns: repeat(5, 1fr); }
  .steps--5 .step:not(:last-child)::after { content: ""; }
}
@media (min-width: 900px) {
  .steps--6 { grid-template-columns: repeat(3, 1fr); }
}
.step::after {
  position: absolute; top: 40px; right: -15px; z-index: 1;
  width: 12px; height: 12px;
  border-top: 2px solid var(--accent); border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table {
  width: 100%; min-width: 520px;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .95rem;
}
.table th, .table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.table thead th {
  background: var(--ink); color: #fff;
  font-weight: 700; font-size: .85rem; letter-spacing: .04em; white-space: nowrap;
}
.table tbody tr:nth-child(even) { background: var(--paper-2); }
.table tbody th { font-weight: 700; }
.table tbody tr:last-child th, .table tbody tr:last-child td { border-bottom: 0; }
.table td.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.table-note { margin-top: 12px; font-size: .875rem; color: var(--text-muted); }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); transition: background-color .2s var(--ease); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 8px;
  font-weight: 700; cursor: pointer; list-style: none;
  transition: color .2s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent-text); }
.faq__q::after {
  content: ""; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 2px, 2px 12px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--accent-text);
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.faq__item[open] .faq__q { color: var(--accent-text); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 8px 22px; color: var(--text-muted); }

/* 정의형 정보 목록 (영업시간, 사업자 정보 등) */
.deflist { display: grid; gap: 14px; }
.deflist div { display: flex; gap: 14px; align-items: baseline; }
.deflist dt {
  flex: none; width: 92px;
  font-size: .9rem; font-weight: 700; color: var(--text-muted);
}
.deflist dd { margin: 0; min-width: 0; font-weight: 600; overflow-wrap: anywhere; }
.section--dark .deflist dt { color: var(--text-invert-muted); }

/* 좁은 화면에서는 항목명과 값을 위아래로 */
@media (max-width: 480px) {
  .deflist div { flex-direction: column; gap: 2px; }
  .deflist dt { width: auto; }
}

/* --- 11. 폼 -------------------------------------------------------------- */
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: grid; gap: 7px; }
.field label { font-size: .9rem; font-weight: 700; }
.req { color: var(--accent-text); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit; font-size: .95rem; color: var(--text);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background-color .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .16);
}
.field textarea { min-height: 130px; resize: vertical; }
.field__hint { font-size: .825rem; color: var(--text-muted); }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: .875rem; color: var(--text-muted); }
.form__consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--accent-strong); }
.form__status { font-size: .9rem; font-weight: 600; min-height: 1.4em; }
.form__status.is-error { color: #c62828; }
.form__status.is-ok { color: #157a41; }

/* --- 12. CTA 밴드 / 푸터 ------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 84px) 0;
  background:
    radial-gradient(700px 320px at 18% 0%, rgba(255, 90, 31, .32), transparent 60%),
    var(--ink);
  color: var(--text-invert);
  text-align: center;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 18px);
  mask-image: linear-gradient(90deg, transparent 45%, #000);
  -webkit-mask-image: linear-gradient(90deg, transparent 45%, #000);
}
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-band h2 { text-wrap: balance; }
.cta-band p { margin-top: 14px; color: var(--text-invert-muted); }
.cta-band .btn-row { justify-content: center; margin-top: 28px; }

.site-footer {
  position: relative; overflow: hidden;
  padding: 64px 0 40px;
  background: var(--ink);
  color: var(--text-invert-muted);
  border-top: 1px solid var(--line-dark);
  font-size: .9rem;
}
/* 배경 워터마크 */
.site-footer::before {
  content: "FULLACCEL";
  position: absolute; right: -8px; top: -14px;
  font-size: clamp(88px, 15vw, 200px); font-weight: 900; letter-spacing: -.05em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
  pointer-events: none; user-select: none;
}
.site-footer > .wrap { position: relative; }
.footer__grid {
  display: grid;
  gap: 30px 24px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
/* 좁은 화면에서는 브랜드 소개 블록이 한 줄을 모두 차지 */
.footer__grid > :first-child { grid-column: 1 / -1; }

@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 34px; }
  .footer__grid > :first-child { grid-column: auto; }
}
.footer__title {
  margin-bottom: 14px;
  font-size: .8rem; font-weight: 800; letter-spacing: .14em;
  color: #fff; text-transform: uppercase;
}
.footer__links li + li { margin-top: 9px; }
.footer__links a { transition: color .15s var(--ease); }
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: .825rem;
}
.footer__biz { display: grid; gap: 4px; margin-top: 14px; font-size: .825rem; }

/* --- 13. 모바일 퀵바 ----------------------------------------------------- */
.quick-bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none;
  background: rgba(16, 19, 24, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  padding-bottom: env(safe-area-inset-bottom);
}
.quick-bar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 4px;
  font-size: .75rem; font-weight: 700; color: var(--text-invert-muted);
}
.quick-bar a:hover, .quick-bar a:focus-visible { color: #fff; }
.quick-bar a.is-primary { color: var(--accent); }

@media (max-width: 767px) {
  .quick-bar { display: flex; }
  body { padding-bottom: 62px; }
}

/* --- 15. 예약 페이지 ------------------------------------------------------ */
.reserve {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 960px) { .reserve { grid-template-columns: 1fr; } }

.fieldset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: 12px; }
/* legend 를 float 처리하면 테두리 위에 얹히는 기본 렌더링에서 벗어나 일반 블록처럼 놓인다 */
.fieldset legend { float: left; width: 100%; padding: 0; margin-bottom: 4px; font-size: .95rem; font-weight: 800; }
.fieldset + .fieldset { padding-top: 22px; border-top: 1px solid var(--line); }

/* 선택 칩 */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip, .choice span {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 42px; padding: 8px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); color: var(--text);
  font: inherit; font-size: .9rem; font-weight: 600; line-height: 1.2;
  cursor: pointer; user-select: none;
  transition: border-color .15s var(--ease), background-color .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.chip:hover, .choice:hover span { border-color: var(--text); }
.chip.is-selected, .choice input:checked + span {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.choice { position: relative; }
.choice input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

/* 날짜 칩: 가로 스크롤 */
.date-chips {
  display: flex; gap: 8px;
  overflow-x: auto; padding: 2px 2px 8px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.chip--date {
  flex: none; flex-direction: column; gap: 2px;
  min-width: 66px; padding: 8px 10px;
  border-radius: var(--radius-sm); scroll-snap-align: start;
  font-size: 1rem; font-weight: 800;
}
.chip--date small { font-size: .7rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; }
.chip--sun small { color: #c62828; }
.chip--sat small { color: #1565c0; }
.chip.is-selected small { color: rgba(255, 255, 255, .75); }

/* 요약 패널 */
.summary {
  position: sticky; top: calc(var(--header-h) + 20px);
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--ink-2); color: var(--text-invert);
  border: 1px solid var(--line-dark);
}
.summary .eyebrow { color: var(--accent); }
.summary h3 { color: #fff; margin-bottom: 18px; }
.summary dl { display: grid; gap: 14px; margin: 0 0 20px; }
.summary dt { font-size: .75rem; font-weight: 700; letter-spacing: .08em; color: var(--text-invert-muted); }
.summary dd { margin: 2px 0 0; font-weight: 700; overflow-wrap: anywhere; }
.summary dd.is-empty { font-weight: 500; color: var(--text-invert-muted); }
.summary__note { margin-bottom: 18px; font-size: .85rem; color: var(--text-invert-muted); }
@media (max-width: 960px) { .summary { position: static; } }

.kakao-text {
  width: 100%; min-height: 160px; margin-top: 8px;
  padding: 12px 14px;
  font: inherit; font-size: .875rem; line-height: 1.6;
  border: 1px dashed var(--line); border-radius: var(--radius-sm);
  background: var(--paper-2); color: var(--text);
  resize: vertical;
}

/* --- 16. 접수 완료 화면 --------------------------------------------------- */
.done {
  padding: clamp(28px, 5vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.panel > .done { padding: 0; border: 0; box-shadow: none; }
.done__icon {
  width: 60px; height: 60px; margin-bottom: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff; font-size: 1.7rem; font-weight: 900;
  box-shadow: 0 10px 22px var(--accent-glow);
}
.done__title { margin-bottom: 10px; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.done__lead { color: var(--text-muted); font-size: 1.02rem; }
.done__ref {
  display: inline-block; margin-left: 4px; padding: 2px 10px;
  border-radius: 999px; background: var(--paper-2);
  font-size: .85rem; font-weight: 700; color: var(--text);
}
.done__list {
  display: grid; grid-template-columns: max-content 1fr; gap: 8px 16px;
  margin: 24px 0 28px; padding: 18px 20px;
  background: var(--paper-2); border-radius: var(--radius);
  font-size: .95rem;
}
.done__list div { display: contents; }
.done__list dt { color: var(--text-muted); font-weight: 600; }
.done__list dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; white-space: pre-wrap; }
@media (max-width: 480px) {
  .done__list { grid-template-columns: 1fr; gap: 2px; }
  .done__list dt { margin-top: 8px; font-size: .8rem; }
}

/* --- 17. 카카오톡 보내기 안내 ------------------------------------------- */
.kakao-guide .step { padding: 22px 22px 20px; }
.kakao-guide .step h3 { font-size: 1rem; }
.kakao-guide .step em { font-style: normal; color: var(--accent-text); font-weight: 800; }
.kakao-text { display: block; }
.kakao-count { font-weight: 800; color: var(--accent-text); }

/* --- 14. 유틸 / 모션 ----------------------------------------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 36px; }
.split {
  display: grid; gap: clamp(24px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

/* JS 가 동작할 때만 숨겼다가 등장시킨다 (스크립트 차단 시 그대로 노출) */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .ticker__track { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}
