/* 28인승 명품리무진 — 반응형 사이트 스타일
   색은 옛 사이트 로고·배너에서 따왔다: 남색(#175C85, 로고 엠블럼) · 청록(#00A29A, 고객센터 상자) · 주황(강조 글씨) */

:root {
  --navy: #175c85;
  --navy-700: #124b6d;
  --navy-900: #0b2f47;
  --teal: #00968f;
  --teal-50: #e7f6f5;
  --orange: #ff8a1f;
  --orange-600: #f07400;
  --ink: #17232e;
  --ink-2: #3a4a59;
  --muted: #62717f;
  --line: #e1e8ee;
  --bg: #f4f7fa;
  --white: #fff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(11, 47, 71, .10);
  --shadow-sm: 0 2px 10px rgba(11, 47, 71, .08);
  --container: 1160px;
  --header-h: 68px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  /* 한글이 글자 중간에서 끊기지 않게 — 긴 영문·주소만 overflow-wrap 으로 끊는다 */
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-700); }
h1, h2, h3, h4 { line-height: 1.3; letter-spacing: -0.02em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; 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 { position: absolute; left: 12px; top: -48px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (max-width: 480px) { .container { padding: 0 16px; } }

.icon { width: 1.25em; height: 1.25em; flex: none; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ── 버튼 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1.5px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; line-height: 1; text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #1d1300; }
.btn-primary:hover { background: var(--orange-600); color: #1d1300; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border-color: #c9d6e0; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-lg { min-height: 56px; padding: 0 28px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ── 머리글 */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--navy); }
.brand-sub { font-size: .72rem; color: var(--muted); letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 12px; border-radius: 8px; color: var(--ink-2); font-weight: 600; text-decoration: none; font-size: .98rem; }
.nav a:hover { background: var(--bg); color: var(--navy); }
.nav a[aria-current="page"] { color: var(--navy); background: var(--teal-50); }
.header-cta { display: flex; align-items: center; gap: 8px; }
.header-tel { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--navy); text-decoration: none; padding: 8px 10px; border-radius: 8px; }
.header-tel:hover { background: var(--bg); }
.header-cta .btn { min-height: 42px; padding: 0 18px; font-size: .95rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.menu-toggle .icon { width: 26px; height: 26px; }
.menu-toggle:hover { background: var(--bg); }

@media (max-width: 1020px) {
  .header-tel span { display: none; }
}
@media (max-width: 880px) {
  :root { --header-h: 60px; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .brand img { width: 36px; height: 36px; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px 16px 16px; transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .18s, transform .18s, visibility .18s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 14px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a:last-of-type { border-bottom: 0; }
  .nav .nav-extra { display: grid; gap: 8px; margin-top: 12px; }
  /* 위의 '.nav a' (메뉴 줄) 규칙이 버튼 모양을 덮지 않게 되돌린다 */
  .nav .nav-extra .btn { padding: 0 22px; font-size: 1rem; border-radius: 999px; border: 1.5px solid transparent; }
  .nav .nav-extra .btn-outline { border-color: #c9d6e0; }
}
@media (min-width: 881px) { .nav .nav-extra { display: none; } }

/* ── 첫 화면 (옛 메인 비주얼처럼 왼쪽 남색 판 + 오른쪽 사진) */
.hero { background: linear-gradient(135deg, var(--navy-900), var(--navy) 70%); color: #fff; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 40px; align-items: center; padding-top: 56px; padding-bottom: 56px; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.12); font-size: .9rem; font-weight: 600; }
.hero-lead { font-size: 1.08rem; color: rgba(255,255,255,.88); max-width: 34em; }
.hero-model { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; padding: 0; list-style: none; }
.hero-model li { padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); font-size: .9rem; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.35); aspect-ratio: 16 / 10; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media figcaption { position: absolute; left: 14px; bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(11,47,71,.72); font-size: .82rem; }
@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: 28px; padding-top: 28px; padding-bottom: 36px; }
  .hero-media { order: -1; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ── 서브 페이지 머리 */
.page-head { background: linear-gradient(135deg, var(--navy-900), var(--navy)); color: #fff; padding: 44px 0 40px; }
.page-head h1 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem); margin-bottom: .3em; }
.page-head p { color: rgba(255,255,255,.85); margin: 0; max-width: 46em; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; padding: 0; list-style: none; font-size: .88rem; color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: rgba(255,255,255,.5); }

/* ── 섹션 */
.section { padding: 72px 0; }
.section-alt { background: var(--bg); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-block; margin-bottom: 10px; color: var(--teal); font-weight: 700; font-size: .92rem; letter-spacing: .02em; }
.lead { font-size: 1.06rem; color: var(--ink-2); }
@media (max-width: 640px) { .section { padding: 52px 0; } .section-head { margin-bottom: 26px; } }

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .grid-3 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }

/* 행사 종류 */
.trip-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.trip-list li { display: flex; align-items: center; gap: 10px; padding: 16px 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 700; }
.trip-list .icon { width: 28px; height: 28px; color: var(--navy); }

/* 편의시설 */
.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.amenities li { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.amenities .ico { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--teal-50); color: var(--teal); }
.amenities .ico .icon { width: 28px; height: 28px; }
.amenities strong { font-size: 1.02rem; }

/* 사진 */
.photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.photo-grid a, .photo-grid figure { display: block; margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg); position: relative; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s; }
.photo-grid a:hover img { transform: scale(1.04); }
.photo-grid figcaption { position: absolute; left: 8px; top: 8px; padding: 3px 9px; border-radius: 999px; background: rgba(11,47,71,.75); color: #fff; font-size: .78rem; }
@media (max-width: 880px) { .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* 사진 크게 보기 */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(6, 18, 28, .92); padding: 56px 16px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 100%; width: auto; border-radius: 10px; }
.lightbox p { position: absolute; left: 0; right: 0; bottom: 16px; margin: 0; text-align: center; color: #dfe8ef; font-size: .92rem; padding: 0 60px; }
.lightbox button { position: absolute; width: 48px; height: 48px; border: 0; border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.lightbox button:hover { background: rgba(255,255,255,.22); }
.lightbox .lb-close { top: 12px; right: 12px; }
.lightbox .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* 요금 */
.price-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 40px; align-items: center; }
@media (max-width: 960px) { .price-layout { grid-template-columns: 1fr; gap: 24px; } }
.price-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.price-strip li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.price-strip .zone { display: block; color: var(--muted); font-size: .88rem; }
.price-strip .won { font-size: 1.3rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; white-space: nowrap; }
@media (max-width: 480px) { .price-strip li { padding: 10px 12px; } .price-strip .won { font-size: 1.08rem; } }
.note { color: var(--muted); font-size: .92rem; }
.notice-box { background: var(--teal-50); border: 1px solid #bfe6e2; border-radius: var(--radius); padding: 20px 22px; }
.notice-box p:last-child { margin-bottom: 0; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.table caption { text-align: left; padding: 14px 16px 0; color: var(--muted); font-size: .9rem; }
.table th, .table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.table thead th { background: var(--navy); color: #fff; font-weight: 700; white-space: nowrap; border-bottom: 0; }
.table tbody tr:last-child td, .table tbody tr:last-child th { border-bottom: 0; }
.table tbody th { white-space: nowrap; color: var(--navy); }
.table .num { text-align: right; white-space: nowrap; font-weight: 800; color: var(--navy); }
.table .rate { font-weight: 700; color: #c24d00; white-space: nowrap; }
/* 좁은 화면에서는 한 줄을 카드 한 장으로 */
@media (max-width: 720px) {
  .table-cards { border: 0; background: transparent; overflow: visible; }
  .table-cards table, .table-cards tbody, .table-cards tr, .table-cards td, .table-cards th { display: block; width: 100%; }
  .table-cards thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  /* 표를 블록으로 풀면 caption 이 글자 폭으로 쪼그라든다 — 블록으로 다시 편다 */
  .table-cards caption { display: block; width: auto; padding: 0 0 10px; }
  .table-cards tr { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; padding: 6px 4px; box-shadow: var(--shadow-sm); }
  .table-cards th, .table-cards td { border: 0; padding: 8px 14px; }
  .table-cards td[data-label]::before { content: attr(data-label); display: block; font-size: .8rem; font-weight: 700; color: var(--muted); margin-bottom: 2px; }
  .table-cards tbody th { font-size: 1.1rem; }
  .table-cards .num { text-align: left; font-size: 1.2rem; }
}

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 18px; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 28px 16px 0; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--navy); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 16px; margin: 0; color: var(--ink-2); }

/* 견적 안내 */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px 20px 20px; counter-increment: step; }
.steps li::before { content: counter(step); display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 800; margin-bottom: 10px; }
.steps strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.steps span { color: var(--muted); font-size: .94rem; }
.steps.steps-col { grid-template-columns: 1fr; }
.steps.steps-col li { display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; padding: 18px; }
.steps.steps-col li::before { grid-row: span 2; margin: 0; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.check-list .icon { color: var(--teal); width: 22px; height: 22px; margin-top: 3px; stroke-width: 2.4; }
.check-list b { display: block; }
.check-list span { color: var(--muted); font-size: .94rem; }

.cta-band { background: linear-gradient(135deg, var(--navy-900), var(--navy)); color: #fff; border-radius: 20px; padding: 36px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; padding: 28px 22px; } .cta-band .actions .btn { flex: 1 1 100%; } }

.bm-badge { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: #fff; background: rgba(255,255,255,.12); border-radius: 999px; padding: 4px 12px; font-size: .88rem; margin-bottom: 12px; }

/* 고객센터 */
.contact-card { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.contact-card a, .contact-card div { display: flex; flex-direction: column; gap: 2px; padding: 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--ink); }
.contact-card a:hover { border-color: var(--navy); }
.contact-card small { color: var(--muted); font-weight: 600; }
.contact-card strong { font-size: 1.35rem; letter-spacing: -0.01em; color: var(--navy); }
@media (max-width: 720px) { .contact-card { grid-template-columns: 1fr; } }

/* 본문 두 칸 */
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 24px; } }
.prose { max-width: 760px; }
.prose p { color: var(--ink-2); }
.prose h2 { margin-top: 1.6em; font-size: 1.35rem; }
.prose ul { padding-left: 1.2em; color: var(--ink-2); }
.prose li { margin-bottom: .35em; }
.highlight { font-weight: 700; color: var(--navy); }

/* 공지사항 */
.post-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.post-list a { display: block; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); }
.post-list a:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.post-list h2 { font-size: 1.12rem; margin: 0 0 6px; }
.post-list p { margin: 0; color: var(--muted); font-size: .95rem; }
.meta { display: flex; flex-wrap: wrap; gap: 4px 14px; color: var(--muted); font-size: .88rem; margin-bottom: 8px; }
.archive-note { background: #fff8ec; border: 1px solid #ffe0b0; border-radius: var(--radius-sm); padding: 12px 16px; color: #7a4a00; font-size: .93rem; }
.post-figure { margin: 24px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); max-width: 700px; }
.post-body table { margin: 12px 0 18px; }

/* 바닥글 */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.75); padding: 48px 0 32px; font-size: .93rem; }
.site-footer a { color: rgba(255,255,255,.9); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #fff; font-weight: 800; font-size: 1.12rem; }
.footer-brand img { width: 36px; height: 36px; background: #fff; border-radius: 999px; }
.site-footer h2 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-footer ul a { text-decoration: none; }
.site-footer ul a:hover { text-decoration: underline; }
.company { margin-top: 22px; line-height: 1.8; }
.company span { display: inline-block; margin-right: 14px; }
.copy { margin-top: 10px; color: rgba(255,255,255,.55); font-size: .86rem; }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr; } }

/* 모바일 하단 고정 버튼 — 전화·견적 */
.mobile-bar { display: none; }
@media (max-width: 880px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(11,47,71,.08);
  }
  .mobile-bar .btn { min-height: 50px; padding: 0 12px; }
}

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.center { text-align: center; }
.actions-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ── 견적문의 폼 (2026-09-23)
   적어 주신 내용은 /api/quote → 버스매치 → 문자로 사장님 휴대폰에 간다.
   손가락으로 넣는 화면이 많아 칸 높이를 버튼과 같은 48px 로 맞췄다. */
.split-form { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: start; }
.section-head-left { margin-bottom: 20px; }
.section-head-left p { color: var(--muted); margin-bottom: 0; }
.section-head-left b { color: var(--orange-600); }

.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span { font-weight: 700; font-size: .94rem; }
.field > span b { color: var(--orange-600); }
.field small { color: var(--muted); font-size: .84rem; }
.field-wide { margin-top: 14px; }
.quote-form input, .quote-form select, .quote-form textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid #cfdae3; border-radius: var(--radius-sm);
  padding: 0 12px; min-height: 48px; width: 100%; max-width: 100%;
}
.quote-form textarea { padding: 12px; min-height: 96px; line-height: 1.6; resize: vertical; }
.quote-form select { appearance: none; padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2362717f' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6l6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 18px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--navy); outline: none; box-shadow: 0 0 0 3px rgba(23,92,133,.14); }
/* 빨간 테두리는 사람이 건드린 뒤에만 — :invalid 로 하면 빈 필수 칸이 열자마자 빨개진다 */
.quote-form :user-invalid { border-color: #e08b8b; }

.consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 18px 0 0; color: var(--ink-2); font-size: .94rem; }
.consent input { width: 22px; height: 22px; min-height: 0; margin: 2px 0 0; accent-color: var(--navy); }

.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.form-actions .btn { flex: 1 1 200px; }
.form-actions button:disabled { opacity: .6; cursor: default; }

.form-status { margin: 16px 0 0; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 700; }
.form-status.is-ok { background: var(--teal-50); border: 1px solid #bfe6e2; color: #0a5c57; }
.form-status.is-error { background: #fdeceb; border: 1px solid #f3c7c4; color: #8c2019; }
.quote-form .note { margin-top: 12px; color: var(--muted); font-size: .9rem; }

/* 봇 덫 — 사람 눈에는 안 보이고 화면 낭독기도 건너뛴다(aria-hidden) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .split-form { grid-template-columns: 1fr; gap: 28px; }
  .quote-form { padding: 20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
