/* ════════════════════════════════════════════════════════
   PAGE CSS — ABOUT (ab-)
   Ships later as assets/css/page-about.css
   ════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.ab-hero { min-height: 78vh; display: flex; align-items: center; padding: 170px 0 80px; }
.ab-hero .wrap { max-width: 980px; }
.ab-hero h1 { margin: 22px 0 30px; }
.ab-hero-sub { color: var(--mist); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; max-width: 700px; }
.ab-hero-sub b { color: var(--bone); font-weight: 600; }
[data-theme="light"] .ab-hero-sub b { color: var(--ink-2); }

/* ─── SIGNATURE: OPERATOR'S LOG ─── */
.ab-log { position: relative; max-width: 820px; margin: 54px auto 0; padding-left: 34px; }
.ab-log::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.ab-entry { position: relative; padding: 0 0 44px; }
.ab-entry:last-child { padding-bottom: 0; }
.ab-entry::before { content: ''; position: absolute; left: -31px; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); border: 2px solid var(--mist); transition: border-color .5s, box-shadow .5s; }
[data-theme="light"] .ab-entry::before { background: var(--bg, #F2F1EC); }
.ab-entry.in::before { border-color: var(--orange); box-shadow: 0 0 14px rgba(244,81,30,.55); }
.ab-entry .ph { font-family: var(--fm, 'JetBrains Mono', monospace); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 8px; }
.ab-entry h3 { font-family: var(--fd); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: .01em; color: var(--bone); margin-bottom: 10px; }
[data-theme="light"] .ab-entry h3 { color: var(--ink-2); }
.ab-entry p { color: var(--mist); font-size: 15.5px; line-height: 1.7; max-width: 640px; }
.ab-entry p b { color: var(--bone); font-weight: 600; }
[data-theme="light"] .ab-entry p b { color: var(--ink-2); }

/* ─── PRINCIPLES ─── */
.ab-prin { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 54px; }
.ab-card { border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px; background: var(--ink-2); position: relative; transition: transform .5s cubic-bezier(.22,1,.36,1), border-color .5s; }
[data-theme="light"] .ab-card { background: #fff; }
.ab-card:hover { transform: translateY(-6px); border-color: rgba(244,81,30,.4); }
.ab-card .k { font-family: var(--fm, 'JetBrains Mono', monospace); font-size: 10px; letter-spacing: .16em; color: var(--mist); position: absolute; top: 26px; right: 28px; opacity: .55; }
.ab-card h4 { font-family: var(--fd); font-weight: 700; font-size: 25px; letter-spacing: .01em; color: var(--bone); margin-bottom: 12px; }
[data-theme="light"] .ab-card h4 { color: var(--ink-2); }
.ab-card p { color: var(--mist); font-size: 14.5px; line-height: 1.7; }

/* ─── LOCAL SPLIT ─── */
.ab-local { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 54px; }
.ab-local-copy p { color: var(--mist); font-size: 15.5px; line-height: 1.75; margin-bottom: 18px; }
.ab-local-copy p b { color: var(--bone); font-weight: 600; }
[data-theme="light"] .ab-local-copy p b { color: var(--ink-2); }
.ab-map { border: 1px solid var(--line); border-radius: 18px; background: var(--ink-2); padding: 30px; position: relative; overflow: hidden; }
[data-theme="light"] .ab-map { background: #fff; }
.ab-map svg.grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; }
.ab-map svg.grid line { stroke: var(--line); stroke-width: 1; }
.ab-map-inner { position: relative; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; }
.ab-pin { position: absolute; top: 34%; left: 56%; display: flex; align-items: center; gap: 10px; }
.ab-pin .pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); position: relative; }
.ab-pin .pulse::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid rgba(244,81,30,.5); animation: ab-ring 2.2s ease-out infinite; }
@keyframes ab-ring { from { transform: scale(.4); opacity: 1; } to { transform: scale(1.8); opacity: 0; } }
.ab-pin span { font-family: var(--fm, 'JetBrains Mono', monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone); }
[data-theme="light"] .ab-pin span { color: var(--ink-2); }
.ab-map-foot { font-family: var(--fm, 'JetBrains Mono', monospace); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; }

/* ─── STATS ROW ─── */
.ab-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.ab-stat { border: 1px solid var(--line); border-radius: 16px; padding: 30px; text-align: center; background: var(--ink-2); }
[data-theme="light"] .ab-stat { background: #fff; }
.ab-stat .n { font-family: var(--fd); font-weight: 800; font-size: clamp(38px, 4vw, 54px); line-height: 1; color: var(--bone); }
[data-theme="light"] .ab-stat .n { color: var(--ink-2); }
.ab-stat .n em { font-style: normal; color: var(--orange); }
.ab-stat .l { font-family: var(--fm, 'JetBrains Mono', monospace); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); margin-top: 10px; display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ab-local { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .ab-hero { padding-top: 140px; }
  .ab-prin, .ab-stats { grid-template-columns: 1fr; }
  .ab-log { padding-left: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .ab-pin .pulse::after { animation: none; }
}

/* ─── NAV DROPDOWNS ─── */
nav li.has-dd { position: relative; }
nav li.has-dd > a { display: inline-flex; align-items: center; gap: 5px; }
.dd-car { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
nav li.has-dd:hover .dd-car, nav li.has-dd:focus-within .dd-car { transform: rotate(180deg); }
.dd { position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px); min-width: 260px;
  background: var(--panel, var(--ink-2)); border: 1px solid var(--line); padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s, visibility .3s;
  box-shadow: 0 24px 60px rgba(0,0,0,.5); z-index: 60; }
[data-theme="light"] .dd { background: #fff; box-shadow: 0 24px 60px rgba(10,15,30,.14); }
.dd::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* hover bridge */
nav li.has-dd:hover .dd, nav li.has-dd:focus-within .dd { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dd a { display: block; padding: 11px 14px; text-decoration: none; transition: background .25s; }
.dd a:hover { background: rgba(244,81,30,.07); }
.dd a b { display: block; font-family: var(--fd); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: .92rem; color: var(--text, var(--bone)); }
[data-theme="light"] .dd a b { color: var(--ink-2); }
.dd a small { display: block; font-size: .7rem; color: var(--muted, var(--mist)); margin-top: 2px; }
.dd a.dd-cta { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 13px; }
.dd a.dd-cta b { color: var(--orange); }

/* mobile menu sub-links */
.mm-sub { display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 8px 0 4px 46px; }
.mm-sub a { font-family: var(--fm); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted, var(--mist)); text-decoration: none; }
.mm-sub a:active, .mm-sub a:hover { color: var(--orange); }

/* ─── FOOTER CONTACT ─── */
.fcontact { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.fc-row { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.fc-ic { width: 36px; height: 36px; flex: none; border: 1px solid var(--line); background: rgba(244,81,30,.06); display: grid; place-items: center; transition: border-color .3s, background .3s; }
.fc-ic svg { width: 15px; height: 15px; stroke: var(--orange); stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
a.fc-row:hover .fc-ic { border-color: rgba(244,81,30,.5); background: rgba(244,81,30,.12); }
.fc-tx { font-size: .84rem; color: var(--text, var(--bone)); line-height: 1.3; }
[data-theme="light"] .fc-tx { color: var(--ink-2); }
a.fc-row:hover .fc-tx { color: var(--orange); }
.fc-tx small { display: block; font-family: var(--fm); font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted, var(--mist)); margin-bottom: 2px; }
