/* ============================================================
   ENSO enso2 — shared stylesheet
   Design tokens ported from /var/www/html/enso (bento/doc pattern)
   ============================================================ */

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

:root {
  --cream: #F4F2EE;
  --orange: #E8630A;
  --ink: #16130F;
  --gray: #6E6B66;
  --card-radius: 6px;
  --border: rgba(22,19,15,0.08);

  /* chart tokens (technology.html) */
  --chart-surface: #FDFCFA;
  --text-primary: var(--ink);
  --text-secondary: #52514e;
  --text-muted: rgba(22,19,15,0.45);
  --gridline: rgba(22,19,15,0.10);
  --baseline: rgba(22,19,15,0.28);
  --series-1: #E8630A;
  --series-2: #2a78d6;
}

html, body { height: 100%; }

body {
  font-family: 'Noto Sans KR', 'Inter', sans-serif;
  background: #EDEAE4;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page-frame {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
}

.panel {
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  position: relative;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 10%;
  filter:
    drop-shadow(0 -1px 0 rgba(0,0,0,0.25))
    drop-shadow(0 1px 0 rgba(255,255,255,0.85))
    drop-shadow(0 3px 3px rgba(20,14,8,0.3))
    drop-shadow(0 6px 10px rgba(20,14,8,0.28));
  transition: filter 0.2s, transform 0.2s;
}
.nav-logo:hover img { transform: translateY(-1px); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--ink);
  text-decoration: none; opacity: 0.7; transition: opacity 0.2s;
}
.nav-links > li > a:hover { opacity: 1; }
.nav-links a.nav-external {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--orange); opacity: 1; font-weight: 600;
}
.nav-links > li.active > a,
.nav-links > li.active summary { opacity: 1; color: var(--orange); }

/* dropdown groups, built on native <details>/<summary> */
.nav-dropdown details { position: relative; }
.nav-dropdown summary {
  font-size: 13px; font-weight: 500; color: var(--ink);
  opacity: 0.7; cursor: pointer; list-style: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: opacity 0.2s;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: '▾'; font-size: 10px; opacity: 0.7; transition: transform 0.2s;
}
.nav-dropdown details[open] summary::after { transform: rotate(180deg); }
.nav-dropdown summary:hover { opacity: 1; }
.nav-dropdown details[open] summary { opacity: 1; }

.nav-submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(22,19,15,0.14);
  z-index: 20;
}
.nav-submenu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0.85;
  white-space: nowrap;
}
.nav-submenu li a:hover { opacity: 1; background: rgba(232,99,10,0.08); }

.nav-cta {
  padding: 10px 20px; background: var(--ink); color: #fff; border: none;
  border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer;
  letter-spacing: 0.01em; transition: background 0.2s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: #322c24; }

@media (max-width: 860px) {
  nav { padding: 18px 20px; flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 16px; flex-wrap: wrap; }
  .nav-submenu { position: static; box-shadow: none; border: none; padding: 4px 0 0 12px; margin-top: 6px; }
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px 36px;
}
.footer-brand { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  font-size: 12.5px; color: var(--gray); margin-bottom: 14px;
}
.footer-copy { font-size: 11.5px; color: rgba(22,19,15,0.4); }
@media (max-width: 860px) { .site-footer { padding: 26px 20px 30px; } }

/* ── BENTO HERO (home) ── */
.bento {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  padding: 0 20px 20px;
}
.bento-card {
  border-radius: var(--card-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  position: relative;
  transition: transform 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.bento-card:hover { transform: translateY(-2px); }
.bento-hero {
  grid-row: span 2;
  background: var(--orange);
  color: #fff;
  min-height: 396px;
  justify-content: flex-end;
}
.bento-hero-headline { font-size: 32px; font-weight: 700; line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 18px; }
.bento-hero-sub { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 18px; max-width: 380px; }
.bento-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: auto; }
.bento-card-title { font-size: 18px; font-weight: 700; line-height: 1.35; }
.bento-white { background: #FDFCFA; border: 1px solid var(--border); }
.bento-white .bento-card-tag { color: var(--orange); }
.bento-white .bento-card-title { color: var(--ink); }
.bento-dark { background: var(--ink); color: #fff; }
.bento-dark .bento-card-tag { color: var(--orange); }
.bento-gray { background: #7A7772; color: #fff; }
.bento-gray .bento-card-tag { color: rgba(255,255,255,0.65); }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .bento-hero { grid-row: auto; min-height: 320px; }
}

/* ── DOC CONTENT ── */
.content { padding: 8px 40px 56px; }
.breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }

.doc-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.doc-title {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.25;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.doc-lede { font-size: 15px; color: var(--text-secondary); line-height: 1.8; max-width: 760px; margin-bottom: 48px; }

section + section { margin-top: 56px; }
.section-title {
  font-size: 20px; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: baseline; gap: 10px;
}
.section-title::before {
  content: ''; width: 18px; height: 2px; background: var(--orange);
  display: inline-block; transform: translateY(-4px);
}
.section-sub { font-size: 13px; color: var(--gray); margin: -12px 0 22px; }

@media (max-width: 860px) { .content { padding: 8px 20px 40px; } }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 24px; }
.feature-item { background: #FDFCFA; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 20px; }
.feature-title { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 10px; }
.feature-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr; } }

/* ── PRODUCT TYPES ── */
.product-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { background: #FDFCFA; border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; }
.product-card-header { padding: 16px 16px 8px; }
.product-type-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.product-type-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 6px; }
.product-type-spec { font-size: 12px; color: var(--gray); line-height: 1.5; }
.product-type-spec a { color: var(--orange); }
.product-media { position: relative; width: 100%; aspect-ratio: 4 / 5; background: #f5f5f5; }
.product-media img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #fff; object-fit: contain; }
.product-video { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; background: #000; border-radius: 4px; object-fit: cover; }
@media (max-width: 860px) { .product-types { grid-template-columns: 1fr; } }

/* ── CORE TECHNOLOGY BLOCKS ── */
.core-block + .core-block { margin-top: 44px; }
.core-eyebrow {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,99,10,0.1); padding: 5px 10px; border-radius: 20px; margin-bottom: 12px;
}
.core-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.core-lede { font-size: 13.5px; color: var(--text-secondary); line-height: 1.8; max-width: 800px; margin-bottom: 18px; }
.core-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.core-list li { font-size: 13px; color: #3c3a36; line-height: 1.7; padding-left: 18px; position: relative; }
.core-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.core-list b { color: var(--ink); }
.core-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.core-gallery.cols-1 { grid-template-columns: 1fr; }
.core-gallery-item { background: #FDFCFA; border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; }
.core-gallery-item img { display: block; width: 100%; height: auto; background: #fff; }
.core-gallery-cap { padding: 10px 14px; font-size: 12px; font-weight: 600; color: var(--ink); text-align: center; border-top: 1px solid var(--border); }
.core-gallery-full { grid-column: 1 / -1; }
@media (max-width: 860px) { .core-gallery { grid-template-columns: 1fr; } }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--border); padding-left: 24px; margin-left: 4px; }
.timeline-item { position: relative; padding-bottom: 22px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -29px; top: 4px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--cream); box-shadow: 0 0 0 2px var(--orange);
}
.timeline-period { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.02em; margin-bottom: 4px; }
.timeline-desc { font-size: 14px; color: #3c3a36; line-height: 1.65; max-width: 760px; }
.timeline-status { display: inline-block; margin-top: 14px; padding: 6px 14px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; border-radius: 20px; }

/* ── SITE VISIT PHOTOS ── */
.site-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.site-card { background: #FDFCFA; border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; }
.site-media { width: 100%; aspect-ratio: 16 / 9; background: #f0f0ee; overflow: hidden; }
.site-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.site-body { padding: 16px 18px 20px; }
.site-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.site-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.site-desc { font-size: 12.5px; color: var(--gray); line-height: 1.6; }
@media (max-width: 860px) { .site-grid { grid-template-columns: 1fr; } }

/* ── DIAGRAM CARD ── */
.diagram-card { background: var(--chart-surface); border: 1px solid var(--border); border-radius: var(--card-radius); padding: 18px; }
.diagram-card img { width: 100%; height: auto; display: block; border-radius: 4px; }
.diagram-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.diagram-card svg { width: 100%; height: auto; display: block; }
.diagram-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 9px; border-radius: 3px; margin-bottom: 12px; }
.diagram-tag.tag-conventional { background: rgba(232,99,10,0.12); color: var(--orange); }
.diagram-tag.tag-flameless { background: rgba(42,120,214,0.12); color: var(--series-2); }
.diagram-card figcaption { font-size: 12.5px; color: var(--text-secondary); line-height: 1.7; margin-top: 12px; }
@media (max-width: 860px) { .diagram-grid { grid-template-columns: 1fr; } }

/* ── CHART ── */
.chart-card { background: var(--chart-surface); border: 1px solid var(--border); border-radius: var(--card-radius); padding: 24px 24px 20px; }
.chart-legend { display: flex; gap: 24px; margin-bottom: 8px; flex-wrap: wrap; }
.legend-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-primary); font-weight: 500; }
.legend-key { width: 18px; height: 0; border-top: 2.5px solid currentColor; border-radius: 2px; }
.legend-item.s1 { color: var(--series-1); }
.legend-item.s2 { color: var(--series-2); }
.legend-item span.label-text { color: var(--text-primary); font-weight: 500; }
.chart-wrap { position: relative; }
#tempChart { width: 100%; height: auto; display: block; overflow: visible; }
.chart-tooltip {
  position: absolute; pointer-events: none; background: var(--ink); color: #fff; border-radius: 6px;
  padding: 10px 12px; font-size: 12px; line-height: 1.6; min-width: 168px; transform: translate(-50%, -110%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25); z-index: 5;
}
.chart-tooltip.hidden { display: none; }
.chart-tooltip .tt-stage { font-size: 11px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.chart-tooltip .tt-row { display: flex; align-items: center; gap: 6px; justify-content: space-between; }
.chart-tooltip .tt-row + .tt-row { margin-top: 4px; }
.chart-tooltip .tt-key { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.chart-tooltip .tt-swatch { width: 10px; height: 2.5px; border-radius: 2px; }
.chart-tooltip .tt-value { font-weight: 700; font-variant-numeric: tabular-nums; }
.chart-footnote { font-size: 11.5px; color: var(--text-muted); margin-top: 10px; }
.chart-table-toggle { margin-top: 14px; }
.chart-table-toggle summary { font-size: 12.5px; color: var(--text-secondary); cursor: pointer; user-select: none; width: fit-content; }
.chart-table-toggle summary:hover { color: var(--ink); }
.data-table { margin-top: 12px; width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th, .data-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border); }
.data-table th { color: var(--text-secondary); font-weight: 600; font-size: 12px; }
.data-table td { font-variant-numeric: tabular-nums; }
.data-table td.s1-cell { color: var(--series-1); font-weight: 600; }
.data-table td.s2-cell { color: var(--series-2); font-weight: 600; }

/* ── COMPARE ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.compare-col { border-radius: var(--card-radius); padding: 24px; }
.compare-col-conventional { background: var(--chart-surface); border: 1px solid var(--border); border-top: 3px solid var(--series-1); }
.compare-col-flameless { background: var(--ink); color: #fff; border-top: 3px solid var(--series-2); }
.compare-col-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-col li { font-size: 13px; line-height: 1.7; padding-left: 14px; position: relative; }
.compare-col li::before { content: '—'; position: absolute; left: 0; opacity: 0.5; }
.compare-col-conventional li { color: var(--text-secondary); }
.compare-col-conventional li b { color: var(--ink); }
.compare-col-flameless li { color: rgba(255,255,255,0.75); }
.compare-col-flameless li b { color: #fff; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--card-radius); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
.compare-table th, .compare-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--chart-surface); font-size: 12px; color: var(--text-secondary); font-weight: 700; }
.compare-table tbody th { font-weight: 600; color: var(--text-secondary); white-space: nowrap; background: rgba(22,19,15,0.02); }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table td:nth-child(2) { color: var(--series-1); }
.compare-table td:nth-child(3) { color: var(--series-2); font-weight: 500; }
@media (max-width: 860px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col-flameless { order: -1; }
}

/* ── SUMMARY ── */
.summary-card { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; }
.summary-item { background: var(--orange); color: #fff; padding: 28px 24px; text-align: center; }
.summary-value { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.summary-label { font-size: 12.5px; color: rgba(255,255,255,0.85); }
@media (max-width: 860px) { .summary-card { grid-template-columns: 1fr; } }

/* ── CERT / DOC CARDS ── */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cert-card { background: #FDFCFA; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.cert-card.wide { grid-column: 1 / -1; }
.cert-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cert-badge { flex-shrink: 0; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 20px; background: rgba(232,99,10,0.1); color: var(--orange); white-space: nowrap; }
.cert-badge.status-pending { background: rgba(22,19,15,0.08); color: var(--gray); }
.cert-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.cert-head { display: flex; align-items: flex-start; gap: 12px; }
.cert-title { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.cert-holder { font-size: 12px; color: var(--gray); margin-top: 2px; }
.cert-meta { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; font-size: 12px; color: var(--text-secondary); }
.cert-meta dt { color: var(--gray); }
.cert-meta dd { font-weight: 500; }
.cert-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 4px; }
.cert-link {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: #fff;
  background: var(--ink); padding: 8px 14px; border-radius: 4px; text-decoration: none; transition: background 0.2s;
}
.cert-link:hover { background: #322c24; }
.cert-link.secondary { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.cert-link.secondary:hover { background: rgba(22,19,15,0.05); }
.cert-link .size { opacity: 0.6; font-weight: 400; }
.iso-scope { font-size: 12.5px; color: var(--text-secondary); line-height: 1.7; background: rgba(22,19,15,0.04); border-radius: 4px; padding: 10px 12px; }
.iso-standards { display: flex; gap: 8px; flex-wrap: wrap; }
.iso-standard-chip { font-size: 12px; font-weight: 700; color: var(--ink); background: #fff; border: 1px solid var(--border); padding: 6px 12px; border-radius: 4px; }
@media (max-width: 860px) { .cert-grid { grid-template-columns: 1fr; } }

/* ── CEO GREETING ── */
.greeting-wrap { display: flex; gap: 36px; align-items: flex-start; }
.greeting-photo { flex-shrink: 0; width: 220px; }
.greeting-photo img { width: 100%; border-radius: var(--card-radius); border: 1px solid var(--border); display: block; }
.greeting-body { flex: 1; }
.greeting-body p { font-size: 14.5px; line-height: 1.9; color: var(--text-secondary); margin-bottom: 16px; }
.greeting-signature { margin-top: 24px; text-align: right; font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.8; }
@media (max-width: 860px) {
  .greeting-wrap { flex-direction: column; }
  .greeting-photo { width: 160px; }
}

/* ── HISTORY (uses .timeline, year badge variant) ── */
.history-year { font-size: 13px; font-weight: 800; color: var(--orange); letter-spacing: 0.01em; margin-bottom: 4px; }

/* ── SOFTWARE OVERVIEW CARDS ── */
.software-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.software-card {
  display: flex; flex-direction: column; gap: 14px;
  background: #FDFCFA; border: 1px solid var(--border); border-radius: var(--card-radius);
  padding: 24px; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s;
}
.software-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(22,19,15,0.08); }
.software-card-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(232,99,10,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800;
}
.software-card-title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.software-card-desc { font-size: 13px; color: var(--gray); line-height: 1.7; flex: 1; }
.software-card-link { font-size: 12.5px; font-weight: 600; color: var(--orange); }
@media (max-width: 860px) { .software-grid { grid-template-columns: 1fr; } }

.scope-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 4px; }
.scope-list li { font-size: 13.5px; color: #3c3a36; line-height: 1.75; padding-left: 18px; position: relative; }
.scope-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.scope-list b { color: var(--ink); }

.tool-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-chip { font-size: 12px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--border); padding: 6px 12px; border-radius: 20px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { background: #FDFCFA; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 24px; }
.contact-card-title { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 14px; }
.contact-info-list { display: flex; flex-direction: column; gap: 10px; }
.contact-info-row { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.6; }
.contact-info-row .label { flex-shrink: 0; width: 64px; color: var(--gray); font-weight: 600; }
.contact-info-row .value { color: var(--text-secondary); }
.contact-info-row .value a { color: var(--orange); text-decoration: none; }
.map-card { border-radius: var(--card-radius); overflow: hidden; border: 1px solid var(--border); }
.map-card iframe { display: block; width: 100%; height: 260px; border: 0; }
.map-caption { padding: 10px 14px; font-size: 12px; color: var(--gray); background: #FDFCFA; border-top: 1px solid var(--border); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 48px;
  font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; opacity: 0.75;
}
.back-link:hover { opacity: 1; }
