/* ==========================================================================
   BHS Corporate Website — Design System
   Palette: deep navy ground, brass/gold accent, ice-cyan data accent.
   Typeface: Pretendard (KR + display), Space Grotesk (numerals / EN accents)
   ========================================================================== */

:root {
  --bg: #080b12;
  --bg-raised: #0d1220;
  --surface: #10182a;
  --surface-2: #131c30;
  --line: #232f45;
  --line-soft: #171f30;
  --text: #eef1f7;
  --text-muted: #97a3ba;
  --text-faint: #5b6580;
  --gold: #c9a15a;
  --gold-bright: #e3c284;
  --gold-dim: #8a713c;
  --cyan: #63d3e0;
  --cyan-dim: #3a7f8a;
  --danger: #d97a6a;
  --container: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-s: 2px;
  --radius-m: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #0a0e17; }

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

.num {
  font-family: "Space Grotesk", "Pretendard Variable", sans-serif;
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: clamp(64px, 9vw, 128px) 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.section--flush { border-bottom: none; }
.section--surface { background: var(--bg-raised); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 640px; }
.section-head .lede { max-width: 420px; color: var(--text-muted); font-size: 15.5px; }

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.14; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

p { color: var(--text-muted); }
p.lead { font-size: 18px; color: var(--text); line-height: 1.65; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 5px 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  border-radius: 999px;
}
.pill span.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-s);
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #14100a;
}
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--gold-dim); color: var(--gold-bright); }
.btn--arrow::after {
  content: "";
  width: 16px;
  height: 10px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M0 5h14M9 0l5 5-5 5' fill='none' stroke='black' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M0 5h14M9 0l5 5-5 5' fill='none' stroke='black' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.25s var(--ease);
}
.btn--arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4,5,9,0.75) 0%, rgba(4,5,9,0) 100%);
  opacity: 1;
  transition: opacity 0.3s var(--ease);
}
.site-header.is-scrolled::before { opacity: 0; }
.site-header.is-scrolled {
  background: rgba(8, 11, 18, 0.88);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.01em;
}
.brand-mark { height: 21px; width: auto; display: block; flex: none; }
.brand span { color: var(--gold); }
.brand small {
  font-family: "Pretendard Variable", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0;
}

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  position: relative;
  padding: 9px 16px;
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-main a:hover { color: var(--text); }
.nav-main a.active { color: var(--text); }
.nav-main a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 3px;
  height: 2px;
  background: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .tel { display: flex; flex-direction: column; align-items: flex-end; font-size: 12.5px; color: var(--text-faint); line-height: 1.3; }
.nav-cta .tel strong { color: var(--text); font-family: "Space Grotesk", sans-serif; font-size: 15px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 91;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text); transition: all 0.25s var(--ease); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,8,13,0.96) 5%, rgba(6,8,13,0.72) 42%, rgba(6,8,13,0.28) 72%, rgba(6,8,13,0.55) 100%),
    linear-gradient(0deg, rgba(6,8,13,0.9) 0%, rgba(6,8,13,0) 34%);
}
.hero__content { position: relative; z-index: 1; max-width: 700px; }
.hero__content .eyebrow { color: var(--gold-bright); }
.hero__content h1 { margin-bottom: 22px; }
.hero__content h1 em {
  font-style: normal;
  color: var(--gold-bright);
}
.hero__content p.lead { max-width: 540px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero.hero--sub { min-height: 52vh; align-items: flex-end; }
.hero.hero--sub .hero__content { max-width: 620px; }

/* orchestrated intro (single, load-only) */
.hero__content > * { opacity: 0; transform: translateY(16px); animation: heroIn 0.8s var(--ease) forwards; }
.hero__content .eyebrow { animation-delay: 0.05s; }
.hero__content h1 { animation-delay: 0.16s; }
.hero__content p.lead { animation-delay: 0.30s; }
.hero__content .hero__actions { animation-delay: 0.42s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__content > * { opacity: 1; transform: none; animation: none; }
}

/* ---------- Stat / ledger strip ---------- */
.ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
}
.ledger__item {
  padding: 28px var(--gutter);
  border-right: 1px solid var(--line-soft);
}
.ledger__item:last-child { border-right: none; }
.ledger__item .value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--gold-bright);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.ledger__item .label { font-size: 13.5px; color: var(--text-muted); }

/* ==========================================================================
   Service index list (Business Areas overview)
   ========================================================================== */
.index-list { border-top: 1px solid var(--line-soft); }
.index-row {
  display: grid;
  grid-template-columns: 108px 1fr 340px 28px;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.25s var(--ease);
}
.index-row:hover { background: rgba(201, 161, 90, 0.035); }
.index-row .code {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  color: var(--gold);
  padding-top: 4px;
  letter-spacing: 0.02em;
}
.index-row .title-wrap h3 { margin-bottom: 10px; }
.index-row .title-wrap p { font-size: 14.5px; max-width: 560px; }
.index-row .tags { display: flex; flex-wrap: wrap; gap: 8px; align-content: flex-start; }
.index-row .tags span {
  font-size: 12.5px;
  color: var(--text-faint);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}
.index-row .go {
  align-self: center;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.index-row:hover .go { border-color: var(--gold); background: var(--gold); }
.index-row .go svg { width: 12px; height: 12px; }
.index-row:hover .go svg path { stroke: #14100a; }

/* ==========================================================================
   Capability grid (Why BHS)
   ========================================================================== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.cap-card {
  background: var(--bg);
  padding: 34px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.cap-card .icon { width: 40px; height: 40px; margin-bottom: 22px; object-fit: contain; }
.cap-card h4 { margin-bottom: 12px; }
.cap-card p { font-size: 14px; }

/* two-col split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.split.reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border: 1px solid var(--line); }
.split__media .frame-tag {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.03em;
}
.split__body h2 { margin-bottom: 20px; }
.split__body p { margin-bottom: 16px; }
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; font-size: 15px; color: var(--text); align-items: flex-start; }
.check-list li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  margin-top: 8px;
  background: var(--gold);
}

/* ==========================================================================
   Track record list
   ========================================================================== */
.record-list { display: flex; flex-direction: column; }
.record-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.record-row .tag {
  font-size: 13px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
}
.record-row h4 { margin-bottom: 8px; }
.record-row p { font-size: 14.5px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,13,0.55) 0%, rgba(6,8,13,0.88) 100%);
}
.cta-band .wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-band h2 { max-width: 640px; margin-bottom: 16px; }
.cta-band p { max-width: 480px; margin-bottom: 32px; }
.cta-band .btn-row { display: flex; gap: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 64px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-bottom: 20px; }
.footer-col h4 { font-size: 13px; color: var(--text-faint); font-weight: 500; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14px; color: var(--text-muted); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-faint); }

/* ==========================================================================
   Timeline (Company)
   ========================================================================== */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: "";
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--line);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -32px; top: 4px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--gold);
}
.timeline-item .year {
  font-family: "Space Grotesk", sans-serif;
  color: var(--gold-bright);
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
}
.timeline-item p { font-size: 14.5px; color: var(--text); }
.timeline-phase {
  font-size: 12.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 30px 0 14px;
}
.timeline-phase:first-child { margin-top: 0; }

/* ---------- Org chart ---------- */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-node {
  border: 1px solid var(--line);
  padding: 16px 26px;
  text-align: center;
  font-size: 14.5px;
  background: var(--surface);
  min-width: 160px;
}
.org-node.ceo { border-color: var(--gold-dim); color: var(--gold-bright); font-weight: 600; }
.org-connector { width: 1px; height: 28px; background: var(--line); }
.org-row { display: flex; gap: 0; position: relative; }
.org-row-inner {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  position: relative;
}
.org-row-inner::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: calc(100% - 160px); height: 1px; background: var(--line);
}
.org-branch { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-branch .org-connector { height: 28px; }
.org-branch .org-node.dept { border-color: var(--cyan-dim); }
.org-branch .sub-teams { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.org-branch .sub-teams span {
  font-size: 12.5px; color: var(--text-muted);
  border: 1px solid var(--line-soft);
  padding: 6px 12px;
}

/* ==========================================================================
   Solution page — process steps, feature chips
   ========================================================================== */
.solution-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.solution-block { padding: clamp(56px, 8vw, 96px) 0; border-bottom: 1px solid var(--line-soft); }
.solution-block__head { max-width: 720px; margin-bottom: 44px; }
.solution-block__head .code-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px; color: var(--gold);
  border: 1px solid var(--gold-dim);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 40px;
}
.process-step {
  background: var(--bg);
  padding: 28px 24px;
  position: relative;
}
.process-step .step-no {
  font-family: "Space Grotesk", sans-serif;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 16px;
  display: block;
}
.process-step h4 { margin-bottom: 10px; font-size: 15.5px; }
.process-step p { font-size: 13.5px; }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute; right: -13px; top: 28px;
  width: 24px; height: 10px;
  background: currentColor;
  color: var(--line);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M0 5h14M9 0l5 5-5 5' fill='none' stroke='black' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M0 5h14M9 0l5 5-5 5' fill='none' stroke='black' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center / contain;
  z-index: 2;
  display: none;
}
@media (min-width: 900px) {
  .process-step:not(:last-child)::after { display: block; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.feature-item {
  border: 1px solid var(--line-soft);
  padding: 26px 24px;
}
.feature-item h4 { margin-bottom: 10px; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.feature-item h4::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--cyan);
  flex: none;
}
.feature-item p { font-size: 13.5px; }

.usecase-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.usecase-row span {
  border: 1px solid var(--line);
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  border: 1px solid var(--line-soft);
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}
.compare-table th { color: var(--text-faint); font-weight: 500; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; background: var(--bg-raised); }
.compare-table td.hi { color: var(--gold-bright); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.contact-info { background: var(--bg); padding: clamp(28px, 4vw, 48px); }
.contact-map { background: var(--bg); padding: 0; position: relative; min-height: 320px; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.info-row {
  display: flex; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-row:last-child { border-bottom: none; }
.info-row .ico {
  flex: none; width: 22px; height: 22px; margin-top: 2px;
  color: var(--gold);
}
.info-row h4 { font-size: 13px; color: var(--text-faint); font-weight: 500; margin-bottom: 6px; }
.info-row p, .info-row a { font-size: 16px; color: var(--text); }
.info-row .sub { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

.map-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 24px;
  background: linear-gradient(0deg, rgba(6,8,13,0.92), rgba(6,8,13,0));
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.map-caption span { font-size: 13.5px; color: var(--text-muted); }
.map-caption a { font-size: 13.5px; color: var(--gold-bright); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Direct contact / person cards ---------- */
.person-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 40px;
}
.person-card { background: var(--bg); padding: 32px 30px; }
.person-card .role { font-size: 12.5px; color: var(--gold); margin-bottom: 4px; }
.person-card h4 { font-size: 19px; margin-bottom: 20px; }
.person-card .contact-line {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.person-card .contact-line:first-of-type { border-top: none; padding-top: 0; }
.person-card .contact-line .ico { flex: none; width: 18px; height: 18px; color: var(--gold); }
.person-card .contact-line a { color: var(--text); }
.person-card .contact-line a:hover { color: var(--gold-bright); }

/* ==========================================================================
   Page hero small breadcrumbs / misc
   ========================================================================== */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-faint); margin-bottom: 18px; }
.crumbs .sep { opacity: 0.5; }
.crumbs .cur { color: var(--gold-bright); }

.bg-texture {
  position: absolute; inset: 0;
  background-image: url("../images/texture-topo.jpg");
  background-size: cover;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: span 1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-main, .nav-cta .tel { display: none; }
  .brand small { display: none; }
  .nav-cta .btn--ghost { padding: 9px 14px !important; font-size: 12.5px !important; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-main {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px var(--gutter) 40px;
    gap: 4px;
    overflow-y: auto;
    z-index: 90;
  }
  body.nav-open .nav-main a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; }
  .ledger { grid-template-columns: repeat(2, 1fr); }
  .ledger__item:nth-child(2) { border-right: none; }
  .ledger__item { border-bottom: 1px solid var(--line-soft); }
  .split, .solution-hero { grid-template-columns: 1fr; }
  .split .split__media { order: -1 !important; }
  .index-row { grid-template-columns: 1fr; gap: 12px; }
  .index-row .go { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 260px; }
  .person-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .cap-grid { grid-template-columns: 1fr; }
  .ledger { grid-template-columns: 1fr; }
  .ledger__item { border-right: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .record-row { grid-template-columns: 1fr; gap: 8px; }
  .process-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .org-row-inner { flex-direction: column; align-items: center; gap: 24px; }
  .org-row-inner::before { display: none; }
  h1 { font-size: 32px; }
}
