/* ==========================================================================
   기아자동차 카마스터 추천 — 단일 스타일시트
   ========================================================================== */

:root{
  --ink:        #16181A;
  --ink-soft:   #2A2E31;
  --graphite:   #565C61;
  --mute:       #8B9196;
  --accent:     #A31621;
  --accent-dp:  #6E0F17;
  --accent-tint:#FBEDEE;
  --brass:      #C0994F;
  --brass-tint: #F6EFE1;
  --paper:      #F4F3F1;
  --surface:    #FFFFFF;
  --line:       #E1DED9;
  --ok:         #2F6B4F;
  --warn:       #9A6B18;

  --font-display: 'Noto Serif KR', serif;
  --font-body:    'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label:   'Archivo', sans-serif;

  --maxw: 1140px;
  --gutter: clamp(16px, 4vw, 32px);
  --sec-y: clamp(64px, 9vw, 116px);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(22,24,26,.05), 0 12px 32px -12px rgba(22,24,26,.14);
  --header-h: 68px;
  --mbar-h: 64px;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  font-size:16.5px;
  line-height:1.78;
  padding-bottom:0;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
svg{ display:block; flex-shrink:0; }
h1,h2,h3{ font-family:var(--font-display); font-weight:700; color:var(--ink); }

:focus-visible{ outline:2px solid var(--brass); outline-offset:2px; }

h1{ font-size:clamp(30px,6vw,54px); line-height:1.18; letter-spacing:-0.02em; }
h2{ font-size:clamp(24px,4vw,36px); line-height:1.25; letter-spacing:-0.015em; }
h3{ font-family:var(--font-body); font-size:clamp(17px,2.4vw,20px); font-weight:700; letter-spacing:-0.01em; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding-inline:var(--gutter); }
.section{ padding-block:var(--sec-y); border-top:1px solid var(--line); }
.section--ink{ background:var(--ink); color:#fff; border-top:0; }
.section--ink h2,.section--ink h3{ color:#fff; }
.section--surface{ background:var(--surface); }

.eyebrow{
  font-family:var(--font-label); font-size:12px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color:var(--brass);
  display:block; margin-bottom:12px;
}
.section-head{ max-width:640px; margin-bottom:clamp(32px,5vw,52px); }
.section-head p{ color:var(--graphite); margin-top:14px; }
.section--ink .section-head p{ color:#C7CACD; }

.lead{ color:var(--graphite); max-width:70ch; }
.note{ font-size:13.5px; color:var(--mute); margin-top:10px; }

.hairline{ height:1px; background:var(--line); border:0; }
.marker{ width:36px; height:3px; background:var(--brass); margin-bottom:16px; }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; }
.reveal.is-in{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(244,243,241,.92); backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled{ border-color:var(--line); box-shadow:0 2px 12px rgba(22,24,26,.06); }
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; height:var(--header-h); gap:16px; }
.logo{ font-family:var(--font-display); font-weight:700; font-size:16px; letter-spacing:-0.01em; white-space:nowrap; }
.logo strong{ color:var(--accent); }

.gnb{ display:none; }
.gnb ul{ display:flex; gap:28px; }
.gnb a{ font-size:14.5px; font-weight:500; color:var(--graphite); transition:color .2s; }
.gnb a:hover{ color:var(--accent); }

.header-cta{ display:none; }
.icon-btn{
  width:40px; height:40px; border-radius:50%; display:grid; place-items:center;
  border:1px solid var(--line); color:var(--ink); transition:border-color .2s, background .2s, color .2s;
}
.icon-btn:hover{ border-color:var(--accent); color:var(--accent); }
.icon-btn.is-solid{ background:var(--accent); border-color:var(--accent); color:#fff; }
.icon-btn.is-solid:hover{ background:var(--accent-dp); border-color:var(--accent-dp); color:#fff; }

.menu-toggle{ display:grid; place-items:center; width:40px; height:40px; }

@media (min-width:900px){
  .gnb{ display:block; }
  .header-cta{ display:flex; gap:10px; }
  .menu-toggle{ display:none; }
}

/* ---------- mobile menu overlay ---------- */
.mobile-menu{
  position:fixed; inset:0; z-index:200; background:var(--ink); color:#fff;
  display:flex; flex-direction:column; padding:20px var(--gutter) calc(var(--mbar-h) + 20px);
  transform:translateY(-100%); transition:transform .3s ease;
}
.mobile-menu.is-open{ transform:translateY(0); }
.mobile-menu-top{ display:flex; justify-content:space-between; align-items:center; height:var(--header-h); }
.mobile-menu-top .logo{ color:#fff; }
.mobile-menu-top .logo strong{ color:var(--brass); }
.mobile-menu ul{ margin-top:24px; display:flex; flex-direction:column; }
.mobile-menu a{ display:block; padding:16px 0; font-family:var(--font-display); font-size:22px; border-bottom:1px solid rgba(255,255,255,.12); }
.mobile-menu .cta-set{ margin-top:auto; padding-top:28px; }

/* ---------- CTA buttons ---------- */
.cta-set{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.cta-set.is-large{ max-width:640px; }
.btn{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  padding:16px 8px; border-radius:var(--radius); font-size:14px; font-weight:700;
  text-align:center; border:1.5px solid transparent; transition:transform .18s ease, background .2s, border-color .2s, color .2s;
  line-height:1.3;
}
.btn:hover{ transform:translateY(-2px); }
.btn svg{ margin-inline:auto; }
.btn-solid{ background:var(--accent); color:#fff; }
.btn-solid:hover{ background:var(--accent-dp); }
.btn-outline{ background:transparent; border-color:var(--accent); color:var(--accent); }
.btn-outline:hover{ background:var(--accent-tint); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:#000; }
.section--ink .btn-outline{ border-color:var(--brass); color:var(--brass); }
.section--ink .btn-outline:hover{ background:rgba(192,153,79,.12); }
.section--ink .btn-dark{ background:var(--ink-soft); }

.cta-set.is-row{ grid-template-columns:repeat(3,auto); justify-content:start; }
.cta-set.is-row .btn{ flex-direction:row; padding:12px 18px; }

/* inline text-link CTA (spec item 5, table-bottom) */
.link-cta{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; color:var(--accent);
  font-size:14.5px; border-bottom:1.5px solid var(--accent); padding-bottom:2px;
}
.link-cta:hover{ color:var(--accent-dp); border-color:var(--accent-dp); }

/* mobile fixed bottom bar */
.mobile-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:150;
  display:grid; grid-template-columns:repeat(3,1fr);
  background:var(--surface); border-top:1px solid var(--line);
  box-shadow:0 -6px 20px rgba(22,24,26,.08);
  height:var(--mbar-h);
}
.mobile-bar a{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; font-size:11.5px; font-weight:700; }
.mobile-bar a:nth-child(1){ color:var(--accent); }
.mobile-bar a:nth-child(2){ color:var(--ink); }
.mobile-bar a:nth-child(3){ background:var(--ink); color:#fff; }
body.has-mobile-bar{ padding-bottom:var(--mbar-h); }
@media (min-width:900px){
  .mobile-bar{ display:none; }
  body.has-mobile-bar{ padding-bottom:0; }
}

/* ---------- hero ---------- */
.hero{ position:relative; overflow:hidden; }
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(192,153,79,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,153,79,.08) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(ellipse at top right, #000 10%, transparent 70%);
}
.hero .wrap{ position:relative; padding-block:clamp(56px,9vw,104px); display:grid; gap:48px; }
@media (min-width:900px){
  .hero .wrap{
    grid-template-columns:1.1fr 0.9fr;
    grid-template-areas:"head card" "body card";
    align-items:start;
  }
  .hero-head{ grid-area:head; padding-top:clamp(24px,4vw,36px); }
  .hero-body{ grid-area:body; }
  .hero .profile-card{ grid-area:card; }
  .hero h1{ font-size:clamp(30px,3.6vw,44px); white-space:nowrap; }
}
.hero h1{ color:#fff; margin-top:0; }
.hero-sub{ color:#C7CACD; margin-top:28px; max-width:52ch; font-size:17px; }
.hero .cta-set{ margin-top:40px; max-width:520px; }

.trust-list{ display:flex; flex-wrap:wrap; gap:12px 28px; margin-top:32px; }
.trust-list li{ font-family:var(--font-label); font-size:13px; color:#C7CACD; padding-left:16px; position:relative; text-align:left; white-space:nowrap; }
.trust-list li::before{ content:""; position:absolute; left:0; top:7px; width:6px; height:6px; background:var(--brass); border-radius:50%; }
.profile-card .trust-list{ justify-content:center; margin-top:22px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); gap:10px 20px; }

.profile-card{
  background:var(--ink-soft); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg);
  padding:clamp(24px,4vw,36px); text-align:center;
}
.profile-photo{
  width:180px; height:180px; border-radius:50%; margin:0 auto 20px; overflow:hidden;
  border:2px solid var(--brass); padding:8px; background:var(--ink-soft);
}
.hero .profile-photo{ width:220px; height:220px; }
@media (min-width:900px){
  .hero .profile-photo{ width:280px; height:280px; }
}
.profile-photo img{ width:100%; height:100%; border-radius:50%; object-fit:cover; }
.profile-fallback{
  width:100%; height:100%; border-radius:50%; display:grid; place-items:center;
  background:var(--ink); color:var(--brass); font-family:var(--font-display); font-size:28px; font-weight:700;
}
.profile-card .name{ color:#fff; font-family:var(--font-display); font-size:22px; font-weight:700; }
.profile-card .role{ color:var(--brass); font-size:13.5px; font-weight:600; margin-top:4px; }
.profile-card .desc{ color:#C7CACD; font-size:14.5px; margin-top:14px; line-height:1.7; }
.profile-card .cta-set{ margin-top:24px; }

/* ---------- icon card grid ---------- */
.grid{ display:grid; gap:20px; }
.grid-2{ grid-template-columns:1fr; }
.grid-3{ grid-template-columns:1fr; }
.grid-4{ grid-template-columns:1fr; }
.grid-6{ grid-template-columns:1fr; }
@media (min-width:640px){
  .grid-2{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-6{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:900px){
  .grid-3{ grid-template-columns:repeat(3,1fr); }
  .grid-4{ grid-template-columns:repeat(4,1fr); }
  .grid-6{ grid-template-columns:repeat(3,1fr); }
}

.card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; transition:transform .2s ease, border-color .2s ease;
}
.card:hover{ transform:translateY(-2px); border-color:var(--brass); }
.card .icon{ width:40px; height:40px; color:var(--accent); margin-bottom:16px; }
.card h3{ margin-bottom:10px; }
.card p{ color:var(--graphite); font-size:15px; }

.card--idx{ position:relative; padding-top:34px; }
.card--idx .idx{ font-family:var(--font-label); font-size:13px; font-weight:700; color:var(--brass); letter-spacing:.05em; position:absolute; top:22px; right:26px; }

/* ---------- comparison ---------- */
.compare{ display:grid; gap:20px; }
@media (min-width:768px){ .compare{ grid-template-columns:1fr 1fr; } }
.compare-col{ border-radius:var(--radius-lg); padding:clamp(24px,3vw,32px); }
.compare-col.is-good{ background:var(--paper); border:1px solid var(--line); }
.compare-col.is-bad{ background:var(--accent-tint); border:1px solid #F0D3D5; }
.compare-col h3{ margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.compare-col ul{ display:flex; flex-direction:column; gap:14px; }
.compare-col li{ display:flex; gap:10px; font-size:15px; color:var(--graphite); }
.compare-col li svg{ flex-shrink:0; margin-top:3px; }
.compare-col.is-good li svg{ color:var(--ok); }
.compare-col.is-bad li svg{ color:var(--accent); }

/* ---------- cost breakdown (signature) ---------- */
.cost-bar{ display:flex; height:64px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.cost-seg{
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-size:12.5px; font-weight:700; color:#fff; padding:6px 4px; cursor:pointer;
  border-right:1px solid rgba(255,255,255,.25); transition:filter .2s, flex-grow .2s;
}
.cost-seg:last-child{ border-right:0; }
.cost-seg:hover, .cost-seg.is-active{ filter:brightness(1.12); flex-grow:1.15; }
.cost-seg[data-i="0"]{ background:var(--ink); }
.cost-seg[data-i="1"]{ background:var(--accent); }
.cost-seg[data-i="2"]{ background:var(--accent-dp); }
.cost-seg[data-i="3"]{ background:var(--brass); color:var(--ink); }
.cost-seg[data-i="4"]{ background:var(--graphite); }
.cost-seg[data-i="5"]{ background:#3D4247; }

.cost-panel{
  margin-top:24px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:24px 26px; min-height:118px;
}
.cost-panel .tag{ font-family:var(--font-label); font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); }
.cost-panel h4{ font-family:var(--font-body); font-weight:700; font-size:17px; margin-top:8px; }
.cost-panel p{ color:var(--graphite); font-size:14.5px; margin-top:8px; }

/* ---------- table ---------- */
.table-scroll{ overflow-x:auto; border:1.5px solid var(--brass); border-radius:var(--radius); }
table.data{ width:100%; border-collapse:collapse; min-width:560px; background:var(--brass-tint); }
table.data caption{ text-align:left; padding:16px 18px; font-weight:700; border-bottom:1px solid var(--line); }
table.data th, table.data td{ padding:14px 18px; text-align:left; font-size:14.5px; border-bottom:1px solid var(--line); }
table.data thead th{ background:var(--ink); color:#fff; font-family:var(--font-label); font-size:12px; letter-spacing:.06em; text-transform:uppercase; font-weight:600; border-bottom:3px solid var(--brass); }
table.data tbody th{ font-weight:700; color:var(--ink); white-space:nowrap; }
table.data tbody tr:last-child td, table.data tbody tr:last-child th{ border-bottom:0; }
table.data tbody tr:nth-child(even){ background:rgba(192,153,79,.16); }
table.data tbody tr:hover{ background:rgba(192,153,79,.28); }
@media (max-width:639px){
  .table-fit{ overflow-x:visible; }
  .table-fit table.data{ min-width:0; width:100%; table-layout:fixed; }
  .table-fit table.data th, .table-fit table.data td{ padding:8px 6px; font-size:11.5px; white-space:normal; word-break:keep-all; overflow-wrap:break-word; }

  .table-stack table.data{ table-layout:auto; }
  .table-stack table.data thead{ display:none; }
  .table-stack table.data tr{ display:block; padding:14px 16px; border-bottom:1px solid var(--line); border-left:3px solid var(--brass); }
  .table-stack table.data tbody tr:last-child{ border-bottom:0; }
  .table-stack table.data th, .table-stack table.data td{ display:block; padding:2px 0; border-bottom:0; white-space:normal; }
  .table-stack table.data th[scope="row"]{ font-size:15px; color:var(--accent); margin-bottom:4px; }
  .table-stack table.data td[data-label]:before{ content:attr(data-label) " · "; font-weight:700; color:var(--mute); }
  .table-stack table.data td:last-child{ margin-top:6px; }
}

/* ---------- timeline ---------- */
.timeline{ display:flex; flex-direction:column; gap:0; }
.timeline-step{ display:flex; gap:20px; padding-block:22px; border-top:1px solid var(--line); }
.timeline-step:first-child{ border-top:0; }
.timeline-num{
  font-family:var(--font-label); font-weight:700; font-size:15px; color:var(--brass);
  width:44px; height:44px; border:1.5px solid var(--brass); border-radius:50%;
  display:grid; place-items:center; flex-shrink:0;
}
.timeline-body h3{ margin-bottom:8px; }
.timeline-roles{ display:grid; gap:6px; margin-top:10px; }
.timeline-roles p{ font-size:14px; color:var(--graphite); }
.timeline-roles span{ font-family:var(--font-label); font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--accent); margin-right:8px; }
@media (min-width:900px){
  .timeline{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  .timeline-step{ flex-direction:column; border-top:0; border:1px solid var(--line); border-radius:var(--radius); padding:22px; background:var(--surface); }
  .timeline-step:first-child{ border-left:1px solid var(--line); padding-left:22px; }
  .timeline-num{ margin-bottom:14px; }
}

/* ---------- checklist / prepare ---------- */
.check-list{ display:flex; flex-direction:column; gap:14px; }
.check-item{ display:flex; gap:14px; align-items:flex-start; padding:16px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); }
.check-item svg{ flex-shrink:0; color:var(--brass); margin-top:2px; }
.check-item p{ font-size:15px; color:var(--ink); font-weight:600; }

/* ---------- decision tree ---------- */
.decision-svg{ display:none; width:100%; height:auto; }
.decision-steps{ display:flex; flex-direction:column; gap:0; }
.decision-step{ border-left:2px solid var(--brass); padding:0 0 22px 20px; margin-left:8px; position:relative; }
.decision-step::before{ content:""; position:absolute; left:-7px; top:2px; width:12px; height:12px; border-radius:50%; background:var(--brass); }
.decision-step:last-child{ border-left-color:transparent; padding-bottom:0; }
.decision-q{ font-family:var(--font-label); font-size:12px; font-weight:700; color:var(--accent); text-transform:uppercase; letter-spacing:.05em; }
.decision-a{ margin-top:6px; font-size:15px; color:var(--graphite); }
@media (min-width:640px){
  .decision-svg{ display:block; }
  .decision-steps{ display:none; }
}

/* ---------- inquiry tag cards ---------- */
.tag-card{ background:var(--surface); border:1px solid var(--line); border-left:3px solid var(--brass); border-radius:var(--radius); padding:22px; display:flex; flex-direction:column; gap:10px; }
.tag-card .label{ font-family:var(--font-label); font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--brass); }
.tag-card p{ font-size:14.5px; color:var(--graphite); flex-grow:1; }

/* ---------- area cards ---------- */
.area-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
@media (min-width:640px){ .area-grid{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:900px){ .area-grid{ grid-template-columns:repeat(4,1fr); } }
.area-card{
  padding:18px; text-align:center; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  font-weight:700; font-size:14.5px; color:var(--graphite);
}
.area-card.is-link{ color:var(--ink); cursor:pointer; transition:border-color .2s, color .2s; }
.area-card.is-link:hover{ border-color:var(--brass); color:var(--accent); }
.area-card .soon{ display:block; font-size:11px; font-weight:500; color:var(--mute); margin-top:4px; }

/* ---------- segment / chip list (models hub) ---------- */
.segment-block{ padding-block:22px; border-top:1px solid var(--line); }
.segment-block:first-child{ border-top:0; padding-top:0; }
.segment-block h3{ margin-bottom:8px; }
.segment-block p{ color:var(--graphite); font-size:14.5px; max-width:70ch; }
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.chip{ background:var(--paper); border:1px solid var(--line); border-radius:999px; padding:8px 16px; font-size:13.5px; font-weight:600; color:var(--graphite); }

/* ---------- SVG diagram wrapper ---------- */
.diagram-box{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(20px,4vw,36px); box-shadow:var(--shadow); }
.diagram-box svg{ width:100%; height:auto; }
.diagram-cap{ text-align:center; font-size:13px; color:var(--mute); margin-top:14px; }

/* ---------- accordion (FAQ) ---------- */
.accordion{ display:flex; flex-direction:column; gap:10px; }
.accordion details{ background:var(--surface); border:1px solid var(--line); border-left:3px solid var(--brass); border-radius:var(--radius); overflow:hidden; }
.accordion summary{
  list-style:none; cursor:pointer; padding:18px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-weight:700; font-size:15.5px;
}
.accordion summary::-webkit-details-marker{ display:none; }
.accordion summary .chevron{ transition:transform .25s ease; color:var(--brass); flex-shrink:0; }
.accordion details[open] summary .chevron{ transform:rotate(180deg); }
.accordion .a-body{ padding:0 20px 20px; color:var(--graphite); font-size:14.5px; }

/* ---------- final CTA ---------- */
.final-cta{ text-align:center; }
.final-cta .profile-photo{ margin-inline:auto; }
.final-cta h2{ color:#fff; margin-top:20px; }
.final-cta .sub{ color:#C7CACD; margin-top:12px; max-width:56ch; margin-inline:auto; }
.final-cta .cta-set{ margin:32px auto 0; max-width:640px; }
.final-cta .btn{ padding:20px 8px; font-size:15px; }
.final-cta .trust-list{ justify-content:center; margin-top:28px; }

/* ---------- disclaimer ---------- */
.disclaimer{ background:var(--ink-soft); border-left:3px solid var(--brass); padding:20px var(--gutter); }
.disclaimer .wrap{ padding:0; max-width:var(--maxw); margin:0 auto; }
.disclaimer p{ color:var(--mute); font-size:13px; line-height:1.7; }

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); color:var(--mute); padding-block:48px; }
.footer-grid{ display:grid; gap:32px; }
@media (min-width:768px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-biz-title{ font-family:var(--font-label); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--brass); margin-bottom:14px; }
.footer-biz li{ display:flex; gap:10px; font-size:13.5px; padding-block:4px; color:#B9BCBE; }
.footer-biz li span{ color:var(--mute); min-width:96px; flex-shrink:0; }
.footer-links{ display:flex; flex-wrap:wrap; gap:16px; align-content:flex-start; }
.footer-links a{ font-size:13.5px; color:#B9BCBE; }
.footer-links a:hover{ color:var(--brass); }
.footer-copy{ margin-top:32px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); font-size:12.5px; color:var(--mute); }

/* ---------- breadcrumb ---------- */
.breadcrumb{ padding-block:20px; }
.breadcrumb ol{ display:flex; flex-wrap:wrap; gap:8px; font-size:13px; color:var(--mute); }
.breadcrumb a{ color:var(--graphite); }
.breadcrumb a:hover{ color:var(--accent); }
.breadcrumb li:not(:last-child)::after{ content:"›"; margin-left:8px; color:var(--mute); }

/* ---------- hub hero (sub pages) ---------- */
.hub-hero{ background:var(--ink); color:#fff; padding-block:clamp(48px,7vw,80px); }
.hub-hero h1{ color:#fff; }
.hub-hero p{ color:#C7CACD; margin-top:16px; max-width:64ch; }

/* ---------- misc ---------- */
.center{ text-align:center; }
.mt-lg{ margin-top:clamp(32px,5vw,52px); }
@media print{
  .site-header, .mobile-bar, .mobile-menu, .final-cta .cta-set{ display:none !important; }
}
