/* =====================================================================
   Korea Auto Export — production design system
   Self-contained. Mobile-first, no JS required (accordion via <details>,
   mobile nav via :target). Tokens mirror the original board theme.
   ===================================================================== */

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

:root {
  --bg: #f4f7f9;
  --paper: #ffffff;
  --ink: #0d1822;
  --ink-2: #344051;
  --muted: #66717f;
  --line: rgba(13, 24, 34, .12);
  --soft: #eef3f6;
  --navy: #0f172a;
  --navy-2: #1d2940;
  --accent: #2563eb;       /* trust teal */
  --accent-ink: #1d4ed8;
  --gold: #2563eb;         /* CTA amber */
  --gold-ink: #06110e;
  --ok: #2563eb;
  --warn: #c9851a;
  --danger: #bd2f2f;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 8px 22px rgba(13, 24, 34, .06);
  --shadow: 0 16px 42px rgba(13, 24, 34, .10);
  --shadow-lg: 0 26px 60px rgba(13, 24, 34, .16);
  --maxw: 1240px;
  color-scheme: light;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Inter, "Pretendard", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

.wrap { width: min(var(--maxw), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 64px 0; }
.section.tight { padding: 44px 0; }
.section.soft { background: var(--soft); }
.section.navy { background: var(--navy); color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(17, 165, 139, .12); color: var(--accent-ink);
  font-size: 12.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.section.navy .eyebrow { background: rgba(255, 255, 255, .1); color: #6fe7cf; }
.lead { color: var(--muted); font-size: 18px; max-width: 660px; }
.center .lead { margin-inline: auto; }
.section-title { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.12; letter-spacing: -.01em; font-weight: 800; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border-radius: var(--radius); border: 1px solid transparent;
  font-weight: 800; font-size: 15px; white-space: nowrap; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--gold-ink); box-shadow: 0 10px 24px rgba(255, 179, 33, .3); }
.btn-primary:hover { background: #ffc043; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-teal { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(17, 165, 139, .26); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 13.5px; }
.btn .ic { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy); color: rgba(255, 255, 255, .78);
  font-size: 12.5px; font-weight: 600;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 38px; }
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: #fff; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 17px; letter-spacing: -.01em; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 11px; color: #06110e; background: var(--accent);
  font-size: 14px; font-weight: 900; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; color: var(--accent-ink); text-transform: uppercase; }
.nav-main { display: flex; align-items: center; gap: 26px; }
.nav-main a { font-size: 14.5px; font-weight: 700; color: var(--ink-2); }
.nav-main a:hover, .nav-main a[aria-current="page"] { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle, .nav-close { display: none; }
.mobile-nav { display: none; }   /* drawer hidden on desktop; revealed in mobile media query */

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; color: #fff;
  background:
    linear-gradient(105deg, rgba(7, 17, 29, .96) 38%, rgba(7, 17, 29, .58) 78%, rgba(7, 17, 29, .35)),
    var(--hero-img, none) center / cover no-repeat,
    var(--navy);
}
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .82fr); gap: 36px; align-items: center; padding: 70px 0 76px; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.04; letter-spacing: -.02em; font-weight: 850; }
.hero h1 .hl { color: var(--gold); }
.hero p.sub { margin-top: 18px; max-width: 560px; color: rgba(255, 255, 255, .82); font-size: 18px; }
.hero .cta-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero .trust-inline { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 600; }
.hero .trust-inline b { color: #fff; }
.hero .trust-inline span { display: inline-flex; align-items: center; gap: 7px; }
.hero .trust-inline .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero-card {
  background: rgba(255, 255, 255, .97); color: var(--ink);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg);
}
.hero-card h2 { font-size: 19px; }
.hero-card p.note { margin-top: 4px; color: var(--muted); font-size: 13px; }
.field { display: grid; gap: 6px; margin-top: 14px; font-size: 12.5px; font-weight: 800; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 46px; padding: 0 13px; font: inherit; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.field textarea { min-height: 84px; padding: 11px 13px; resize: vertical; }
.hero-card .btn { margin-top: 16px; }
.hero-card .reassure { margin-top: 12px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }

/* ---------- Logo / brand strip ---------- */
.makers { padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.makers .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; }
.makers .lbl { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.makers .chip {
  padding: 7px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-weight: 800; font-size: 14px; color: var(--ink-2); background: var(--soft);
}

/* ---------- Generic card grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.feature .fi {
  width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 16px;
  border-radius: 13px; background: rgba(17, 165, 139, .12); color: var(--accent-ink);
}
.feature .fi svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
.step {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 14px;
  border-radius: 12px; background: var(--navy); color: var(--gold); font-weight: 900; font-size: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.stat { text-align: center; }
.stat .n { font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: -.02em; color: #fff; }
.stat .n .u { color: var(--gold); }
.stat .t { margin-top: 4px; color: rgba(255, 255, 255, .72); font-size: 14px; font-weight: 600; }

/* ---------- Vehicle cards ---------- */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.v-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .14s ease;
}
.v-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.v-photo { position: relative; aspect-ratio: 4 / 3; background: #dde3e8; }
.v-photo img { width: 100%; height: 100%; object-fit: cover; }
.v-tags { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-flex; align-items: center; min-height: 25px; padding: 0 9px;
  border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .01em;
}
.tag.gold { background: var(--gold); color: var(--gold-ink); }
.tag.dark { background: rgba(7, 17, 29, .84); color: #fff; }
.tag.teal { background: var(--accent); color: #fff; }
.v-body { display: flex; flex-direction: column; flex: 1; padding: 16px; }
.v-lot { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 800; color: var(--muted); }
.v-card h3 { font-size: 18px; margin: 7px 0 0; line-height: 1.22; }
.v-card h3 a:hover { color: var(--accent-ink); }
.v-price { margin: 10px 0 12px; display: flex; align-items: baseline; gap: 8px; }
.v-price strong { font-size: 16px; color: var(--ink); }
.v-price .ask { color: var(--accent-ink); font-size: 12.5px; font-weight: 900; }
.v-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-bottom: 12px; }
.v-specs span {
  display: flex; align-items: center; gap: 6px; min-height: 30px; padding: 0 9px;
  border-radius: 8px; background: var(--soft); color: var(--ink-2); font-size: 12px; font-weight: 700;
}
.v-specs span svg { width: 14px; height: 14px; flex: none; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.v-score { margin-bottom: 13px; }
.v-score .bar { height: 8px; border-radius: 999px; background: #e4e9ee; overflow: hidden; }
.v-score .bar > i { display: block; height: 100%; width: var(--score); background: linear-gradient(90deg, var(--accent), #1fbf9f); }
.v-score small { display: flex; justify-content: space-between; margin-top: 5px; color: var(--muted); font-size: 11.5px; font-weight: 700; }
.v-actions { margin-top: auto; display: flex; gap: 8px; }
.v-actions > * { flex: 1; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding: 16px 0 0; font-size: 13px; color: var(--muted); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--line); }
.crumbs a:hover { color: var(--accent-ink); }
.crumbs [aria-current] { color: var(--ink-2); font-weight: 700; }

/* ---------- Page header (inner) ---------- */
.page-head { background: var(--navy); color: #fff; padding: 30px 0 40px; }
.page-head .crumbs { color: rgba(255, 255, 255, .6); }
.page-head .crumbs a:hover { color: #fff; }
.page-head .crumbs [aria-current] { color: rgba(255, 255, 255, .85); }
.page-head h1 { margin-top: 16px; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; letter-spacing: -.02em; }
.page-head p { margin-top: 12px; max-width: 720px; color: rgba(255, 255, 255, .76); font-size: 16.5px; }

/* ---------- Inventory layout ---------- */
.shop { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: 26px; align-items: start; }
.filters { position: sticky; top: 92px; display: grid; gap: 16px; }
.filters .box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.filters h2 { font-size: 15px; margin-bottom: 12px; }
.filters .frow { display: grid; gap: 7px; margin-bottom: 12px; font-size: 12px; font-weight: 800; color: var(--ink-2); }
.filters select, .filters input { width: 100%; min-height: 42px; padding: 0 11px; font: inherit; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.facet { display: flex; align-items: center; justify-content: space-between; min-height: 34px; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.facet span { color: var(--muted); font-weight: 700; }
.shop-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.shop-head .count { font-weight: 800; }
.shop-head .count b { color: var(--accent-ink); }
.sortbar { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.sortbar select { min-height: 40px; padding: 0 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font: inherit; }

/* ---------- Vehicle detail ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .9fr); gap: 30px; align-items: start; }
.gallery .main-img { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #dde3e8; }
.gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.thumbs img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); cursor: pointer; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 14.5px; }
.spec-table th, .spec-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { width: 42%; color: var(--muted); font-weight: 700; background: var(--soft); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.buy-card { position: sticky; top: 92px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.buy-card .price { font-size: 26px; font-weight: 900; letter-spacing: -.02em; }
.buy-card .price .ask { display: block; margin-top: 2px; color: var(--accent-ink); font-size: 13px; font-weight: 800; }
.buy-card .kv { display: flex; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.buy-card .kv span { color: var(--muted); }
.buy-card .kv b { font-weight: 800; }
.buy-card .btn { margin-top: 14px; }
.assurances { margin-top: 16px; display: grid; gap: 9px; }
.assurances li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--ink-2); }
.assurances svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--accent); stroke-width: 2; margin-top: 1px; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin: 30px 0 12px; letter-spacing: -.01em; }
.prose h3 { font-size: 19px; margin: 22px 0 8px; }
.prose p { color: var(--ink-2); margin-bottom: 14px; }
.prose ul.bullets { display: grid; gap: 9px; margin: 0 0 16px; }
.prose ul.bullets li { position: relative; padding-left: 26px; color: var(--ink-2); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 20px; box-shadow: var(--shadow-sm);
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 0; font-weight: 800; font-size: 16px; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--accent); transition: transform .15s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--muted); font-size: 15px; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.quote .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.quote p { margin: 12px 0 16px; font-size: 15.5px; color: var(--ink-2); }
.quote .who { display: flex; align-items: center; gap: 11px; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--gold); font-weight: 900; font-size: 14px; }
.quote .who b { font-size: 14px; }
.quote .who span { display: block; color: var(--muted); font-size: 12.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy), var(--navy-2)); color: #fff; border-radius: 22px; padding: 44px; }
.cta-band .wrap2 { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; }
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -.01em; }
.cta-band p { margin-top: 8px; color: rgba(255, 255, 255, .78); max-width: 520px; }
.cta-band .glow { position: absolute; width: 360px; height: 360px; right: -80px; top: -120px; background: radial-gradient(circle, rgba(17,165,139,.4), transparent 70%); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .72); padding: 56px 0 110px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.site-footer .brand { color: #fff; }
.site-footer p.about { margin-top: 14px; max-width: 320px; font-size: 14px; color: rgba(255, 255, 255, .6); }
.foot-col h4 { color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col a { display: block; padding: 5px 0; font-size: 14px; color: rgba(255, 255, 255, .7); }
.foot-col a:hover { color: #fff; }
.foot-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12.5px; color: rgba(255, 255, 255, .5); }
.foot-bottom .socials { display: flex; gap: 12px; }
.foot-bottom .socials a { color: rgba(255,255,255,.7); }
.disclaimer { margin-top: 10px; font-size: 11.5px; color: rgba(255, 255, 255, .4); max-width: 760px; }

/* ---------- Floating contact ---------- */
.float-contact { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; gap: 12px; }
.float-btn {
  position: relative; width: 60px; height: 60px; display: grid; place-items: center;
  border-radius: 50%; color: #fff; border: 3px solid #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
  transition: transform .14s ease;
}
.float-btn::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid currentColor; opacity: .22; animation: ring 2.6s ease-out infinite; }
.float-btn:hover { transform: translateY(-3px) scale(1.05); }
.float-btn svg { width: 32px; height: 32px; fill: currentColor; }
.float-btn.wa { background: #25d366; }
.float-btn.tg { background: #2aabee; }
.float-btn.wa::after { animation-delay: .3s; }
@keyframes ring { 0% { transform: scale(.8); opacity: .34; } 80%, 100% { transform: scale(1.26); opacity: 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-grid, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .detail { grid-template-columns: 1fr; }
  .buy-card { position: static; }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  .nav-main, .nav-actions .btn { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center; width: 46px; height: 46px;
    border: 1px solid var(--line); border-radius: 10px; background: #fff;
  }
  .nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 2; fill: none; }
  /* :target mobile drawer */
  .mobile-nav {
    position: fixed; inset: 0; z-index: 60; background: var(--navy); color: #fff;
    transform: translateX(100%); transition: transform .25s ease; padding: 24px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .mobile-nav:target { transform: translateX(0); }
  .mobile-nav .mn-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .nav-close { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; color: #fff; font-size: 22px; }
  .mobile-nav a.mn-link { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 17px; font-weight: 700; }
  .mobile-nav .btn { margin-top: 18px; }
}

@media (max-width: 680px) {
  .wrap { width: calc(100% - 28px); }
  .section { padding: 48px 0; }
  .grid-4, .grid-3, .grid-2, .vehicle-grid, .steps, .stat-band, .foot-grid { grid-template-columns: 1fr; }
  .shop { grid-template-columns: 1fr; }
  .filters { position: static; }
  .hero .wrap { padding: 48px 0 54px; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .cta-band { padding: 30px; }
  .foot-grid { gap: 26px; }
  .float-btn { width: 56px; height: 56px; }
  .float-btn svg { width: 30px; height: 30px; }
}

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

/* ---------- maker badge ---------- */
.maker-badge{position:absolute;top:10px;right:10px;display:inline-flex;align-items:center;padding:5px 12px;border-radius:999px;background:rgba(255,255,255,.95);box-shadow:0 4px 14px rgba(13,24,34,.16);font-size:11px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;color:#0d1822;z-index:2}
.gallery .maker-badge{top:14px;right:14px;padding:7px 15px;font-size:12.5px}
.price .krw{font-size:13px;font-weight:800;color:var(--muted);display:block;margin-top:2px}
/* ---------- reviews ---------- */
.reviews-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.review-card{display:flex;flex-direction:column;overflow:hidden;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.review-card .r-photo{position:relative;aspect-ratio:16/10;background:var(--soft)}
.review-card .r-photo img{width:100%;height:100%;object-fit:cover}
.review-card .r-body{display:flex;flex-direction:column;gap:9px;padding:18px;flex:1}
.review-card .r-top{display:flex;align-items:center;justify-content:space-between}
.review-card .stars{color:var(--gold);letter-spacing:2px;font-size:14px}
.review-card .r-date{color:var(--muted);font-size:12.5px;font-weight:700}
.review-card h3{font-size:16.5px;line-height:1.28}
.review-card .r-text{color:var(--ink-2);font-size:14.5px;margin:0}
.review-card .r-who{display:flex;align-items:center;gap:11px;margin-top:auto;padding-top:6px}
.review-card .r-who .av{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--navy);color:var(--gold);font-weight:800;font-size:14px;flex:none}
.review-card .r-who b{font-size:14px;display:block}
.review-card .verified{color:var(--accent-ink);font-size:12px;font-weight:800}
@media(max-width:1080px){.reviews-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:680px){.reviews-grid{grid-template-columns:1fr}}
/* ---------- guides / destinations / article ---------- */
.guide-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.guide-card{display:flex;flex-direction:column;overflow:hidden;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.guide-card .g-photo{display:block;aspect-ratio:16/9;background:var(--soft)}
.guide-card .g-photo img{width:100%;height:100%;object-fit:cover}
.guide-card .g-body{display:flex;flex-direction:column;gap:8px;padding:18px;flex:1}
.guide-card .g-tag{font-size:11.5px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--accent-ink)}
.guide-card h3{font-size:18px;line-height:1.25}
.guide-card p{color:var(--muted);font-size:14px;margin:0}
.guide-card .g-more{margin-top:auto;color:var(--accent-ink);font-weight:800;font-size:13.5px}
.dest-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.dest-chip{display:flex;flex-direction:column;gap:3px;padding:18px 20px;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);transition:transform .14s ease,box-shadow .14s ease}
.dest-chip:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.dest-chip b{font-size:17px}.dest-chip span{color:var(--muted);font-size:13px}
.article-wrap{max-width:820px;margin-inline:auto}
.article-hero{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);aspect-ratio:16/9}
.article-hero img{width:100%;height:100%;object-fit:cover}
.hero .crumbs{color:rgba(255,255,255,.72)}
.hero .crumbs a:hover{color:#fff}
.hero .crumbs [aria-current]{color:rgba(255,255,255,.9)}
.design-karrot .hero .crumbs{color:var(--muted)}
.design-karrot .hero .crumbs a:hover{color:var(--accent)}
.design-karrot .hero .crumbs [aria-current]{color:var(--ink-2)}
.foot-grid{grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:24px}
@media(max-width:1080px){.guide-grid,.dest-grid{grid-template-columns:repeat(2,1fr)}.foot-grid{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.guide-grid,.dest-grid{grid-template-columns:1fr}.foot-grid{grid-template-columns:1fr}}

/* ===== KARROT — clean mobile marketplace (white + carrot orange, feed cards, bottom tab bar) ===== */
html{background:#e9ebee}
body.design-karrot{--bg:#ffffff;--paper:#ffffff;--ink:#16181d;--ink-2:#3f4651;--muted:#6b7280;--line:#e9ecef;--soft:#f5f7f9;--navy:#16181d;--radius:10px;--radius-lg:16px;--shadow-sm:0 2px 12px rgba(20,20,30,.05);--shadow:0 6px 22px rgba(20,20,30,.08);--shadow-lg:0 14px 40px rgba(20,20,30,.12);background:#fff;max-width:480px;margin:0 auto;box-shadow:0 0 0 1px rgba(20,20,30,.05),0 12px 60px rgba(20,20,30,.13);min-height:100vh;padding-bottom:64px;font-family:Pretendard,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Apple SD Gothic Neo",sans-serif;letter-spacing:-.01em;-webkit-font-smoothing:antialiased}
.design-karrot h1,.design-karrot h2,.design-karrot h3,.design-karrot .section-title{font-weight:800;letter-spacing:-.02em}
.design-karrot .topbar{display:none}
/* floating WhatsApp + Telegram chat, anchored to the phone column above the tab bar */
.design-karrot .float-contact{display:grid;gap:10px;right:calc(50% - min(50%, 240px) + 14px);bottom:76px;z-index:60}
.design-karrot .float-btn{width:52px;height:52px;border-width:3px;box-shadow:0 8px 22px rgba(0,0,0,.22)}
.design-karrot .float-btn svg{width:27px;height:27px}
.design-karrot .site-header{background:rgba(255,255,255,.96);border-bottom:1px solid var(--line)}
.design-karrot .site-header .wrap{min-height:56px}
.design-karrot .brand{font-size:18px;font-weight:800}
.design-karrot .brand small{display:none}
.design-karrot .brand-mark{background:var(--accent);color:#fff;border-radius:10px;box-shadow:none}
.design-karrot .nav-main{display:none}
.design-karrot .nav-toggle{display:none}
.design-karrot .eyebrow{background:color-mix(in srgb, var(--accent) 12%, transparent);color:var(--accent-ink);font-weight:800;border-radius:8px;text-transform:none;letter-spacing:0;font-size:12.5px}
.design-karrot .btn{border-radius:10px;font-weight:800}
.design-karrot .btn-primary{background:var(--accent);color:#fff;box-shadow:none}
.design-karrot .btn-teal{background:var(--accent);color:#fff;box-shadow:none}
.design-karrot .btn-ghost{background:#fff;border-color:var(--line);color:var(--ink)}
.design-karrot .btn-ghost.on-dark{background:#fff;border-color:var(--line);color:var(--ink)}
/* hero: clean light banner */
.design-karrot .hero{background:linear-gradient(180deg,color-mix(in srgb, var(--accent) 6%, #fff) 0%,#ffffff 100%);color:var(--ink)}
.design-karrot .hero .wrap{padding:34px 0 30px}
.design-karrot .hero h1{color:var(--ink);font-size:clamp(27px,5.4vw,38px)}
.design-karrot .hero h1 .hl{color:var(--accent)}
.design-karrot .hero p.sub{color:var(--ink-2)}
.design-karrot .hero .eyebrow{background:#fff;border:1px solid var(--line)}
.design-karrot .hero .trust-inline{color:var(--muted)}
.design-karrot .hero .trust-inline b{color:var(--ink)}
.design-karrot .hero .trust-inline .dot{background:var(--accent)}
.design-karrot .hero-card{background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}
.design-karrot .hero-card .reassure svg{stroke:var(--accent)}
.design-karrot .makers{border-bottom:1px solid var(--line)}
.design-karrot .makers .lbl{color:var(--muted)}
.design-karrot .makers .chip{background:#fff;border:1px solid var(--line);border-radius:999px;color:var(--ink-2);font-weight:700}
/* sections */
.design-karrot .section{padding:34px 0}
.design-karrot .section.soft{background:#f6f7f8}
.design-karrot .section.navy{background:#fff;color:var(--ink)}
.design-karrot .section.navy .eyebrow{background:color-mix(in srgb, var(--accent) 12%, transparent);color:var(--accent-ink)}
.design-karrot .section.navy .stat .n{color:var(--ink)}
.design-karrot .section.navy .stat .n .u{color:var(--accent)}
.design-karrot .section.navy .stat .t{color:var(--muted)}
.design-karrot .section-title{font-size:clamp(20px,4vw,27px)}
.design-karrot .lead{color:var(--ink-2)}
.design-karrot .feature,.design-karrot .quote,.design-karrot .review-card,.design-karrot .step,.design-karrot .box,.design-karrot .buy-card,.design-karrot .table-card,.design-karrot .filters .box,.design-karrot .dest-chip{border:1px solid var(--line);border-radius:16px;box-shadow:none;background:#fff}
.design-karrot .feature .fi{background:color-mix(in srgb, var(--accent) 12%, transparent);color:var(--accent-ink);border-radius:14px}
.design-karrot .step::before{background:var(--accent);color:#fff;border-radius:12px}
.design-karrot .review-card .r-who .av{background:var(--accent);color:#fff}
.design-karrot .review-card .stars{color:var(--accent)}
.design-karrot .review-card .verified{color:var(--accent-ink)}
.design-karrot .cta-band{background:linear-gradient(135deg,var(--accent),var(--accent-ink));border-radius:20px}
.design-karrot .cta-band .glow{display:none}
.design-karrot .page-head{background:#fff;color:var(--ink);border-bottom:1px solid var(--line)}
.design-karrot .page-head .crumbs{color:var(--muted)}.design-karrot .page-head .crumbs a:hover{color:var(--accent)}
.design-karrot .page-head .crumbs [aria-current]{color:var(--ink-2)}
.design-karrot .page-head p{color:var(--ink-2)}
.design-karrot .page-head .trust-inline{color:var(--muted)}.design-karrot .page-head .trust-inline b{color:var(--ink)}.design-karrot .page-head .trust-inline .dot{background:var(--accent)}
/* FEED — horizontal Karrot-style listing rows, centered single column */
.design-karrot .vehicle-grid{grid-template-columns:1fr;gap:0;max-width:660px;margin-inline:auto}
.design-karrot .v-card{flex-direction:row;align-items:center;gap:14px;border:0;border-bottom:1px solid var(--line);border-radius:0;box-shadow:none;padding:14px 2px}
.design-karrot .v-card:hover{transform:none;box-shadow:none;background:#fafbfb}
.design-karrot .v-photo{width:104px;height:104px;flex:none;border-radius:14px;aspect-ratio:auto;overflow:hidden;background:var(--soft)}
.design-karrot .v-photo img{width:100%;height:100%;object-fit:cover}
.design-karrot .v-tags{display:none}
.design-karrot .v-body{padding:0;gap:0;justify-content:center;min-width:0}
.design-karrot .v-lot{font-size:11px;color:var(--muted);font-weight:600;margin-bottom:2px;justify-content:flex-start;gap:8px}
.design-karrot .v-card h3{font-size:15.5px;font-weight:700;line-height:1.3;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.design-karrot .v-card h3 a:hover{color:var(--accent)}
.design-karrot .v-price{margin:5px 0 0}
.design-karrot .v-price strong{font-size:16px;font-weight:800;color:var(--ink)}
.design-karrot .v-price .ask{color:var(--muted);font-weight:600}
.design-karrot .v-specs{display:flex;flex-wrap:wrap;gap:0;margin:4px 0 0}
.design-karrot .v-specs span{background:none;padding:0;min-height:0;border-radius:0;color:var(--muted);font-size:12.5px;font-weight:500}
.design-karrot .v-specs span:not(:last-child)::after{content:"·";margin:0 6px;color:#cfd3d7}
.design-karrot .v-score{display:none}
.design-karrot .v-actions{display:none}
.design-karrot .maker-badge{position:static;display:none}
/* inventory + detail single column */
.design-karrot .shop{grid-template-columns:1fr;max-width:660px;margin-inline:auto}
.design-karrot .filters{position:static}
.design-karrot .shop-head .count b{color:var(--accent-ink)}
.design-karrot .detail{grid-template-columns:1fr}
.design-karrot .buy-card{position:static}
.design-karrot .buy-card .price{color:var(--ink)}.design-karrot .buy-card .price .ask,.design-karrot .price .krw{color:var(--muted)}
.design-karrot .assurances svg{stroke:var(--accent)}
.design-karrot .gallery .maker-badge{display:inline-flex;background:#fff;color:var(--ink-2);border:1px solid var(--line)}
.design-karrot .tag.gold,.design-karrot .tag.teal{background:var(--accent);color:#fff}
.design-karrot .spec-table th{background:var(--soft)}
/* footer light */
.design-karrot .site-footer{background:#f6f7f8;color:#868b94;border-top:1px solid var(--line);padding:42px 0 90px}
.design-karrot .site-footer .brand{color:var(--ink)}
.design-karrot .site-footer .brand-mark{background:var(--accent);color:#fff}
.design-karrot .site-footer p.about,.design-karrot .disclaimer{color:#9aa0a6}
.design-karrot .foot-col h4{color:var(--ink-2)}
.design-karrot .foot-col a{color:#868b94}.design-karrot .foot-col a:hover{color:var(--accent)}
.design-karrot .foot-bottom{border-top:1px solid var(--line);color:#9aa0a6}
.design-karrot .foot-bottom .socials a{color:#868b94}
/* bottom tab bar — app feel */
.design-karrot .tabbar{position:fixed;left:50%;transform:translateX(-50%);width:min(480px,100%);bottom:0;z-index:70;display:flex;background:rgba(255,255,255,.97);backdrop-filter:blur(10px);border-top:1px solid var(--line);box-shadow:0 -2px 14px rgba(0,0,0,.05)}
.design-karrot .tabbar a{flex:1;display:flex;flex-direction:column;align-items:center;gap:3px;padding:8px 0 calc(7px + env(safe-area-inset-bottom,0px));color:var(--muted);font-size:10.5px;font-weight:700}
.design-karrot .tabbar a.on{color:var(--accent)}
.design-karrot .tabbar svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.85;stroke-linecap:round;stroke-linejoin:round}
/* phone-column app frame: single column everywhere, tidy spacing */
.design-karrot .wrap{width:calc(100% - 28px)}
.design-karrot .section{padding:30px 0}
.design-karrot .hero .wrap{grid-template-columns:1fr;gap:20px}
.design-karrot .grid-2,.design-karrot .grid-3,.design-karrot .grid-4,.design-karrot .steps,.design-karrot .reviews-grid,.design-karrot .dest-grid,.design-karrot .split,.design-karrot .detail,.design-karrot .foot-grid{grid-template-columns:1fr}
.design-karrot .stat-band{grid-template-columns:repeat(2,1fr);gap:12px}
.design-karrot .vehicle-grid,.design-karrot .shop{max-width:none;margin-inline:0}
.design-karrot .hero-card{max-width:none}
.design-karrot .mobile-nav{display:none!important}
.design-karrot .cta-band{padding:26px}
.design-karrot .cta-band .wrap2{flex-direction:column;align-items:flex-start;gap:14px}
.design-karrot .foot-bottom{flex-direction:column;align-items:flex-start;gap:8px}
