/* Akash Engineering Works — site stylesheet.
   Tokens and rules follow website-planning/12-website-visual-specification.md.
   Every colour is a token; no literal hex appears in a component rule. */

/* ═══════════════════════════════════════════════ 1 · TOKENS */
:root {
  color-scheme: light dark;

  --navy-900: #071B3D;
  --navy-700: #0D2B5C;
  --navy-500: #17458C;
  --navy-100: #E6ECF6;

  --green-500: #86C232;
  --green-700: #4E7A12;
  --green-050: #F0F6E3;

  --paper: #F7F6F3;
  --surface: #FFFFFF;
  --surface-2: #EFEDE8;
  --ink-900: #14161A;
  --ink-600: #4A5058;
  --ink-400: #6B7078;
  --border: #DFDCD5;
  --border-2: #EBE8E2;

  --oxide-600: #9E4527;
  --oxide-050: #F7EBE6;
  --yellow-600: #9A6E15;
  --yellow-050: #F9F1DD;

  /* on-navy roles, so dark sections never reach for a raw colour */
  --on-navy: #FFFFFF;
  --on-navy-dim: #B6C4DC;
  --navy-rule: #1D3A66;
  --navy-card: #0C2249;

  --focus-ring: var(--navy-700);
  --shadow-header: 0 1px 3px rgba(20, 22, 26, .08);
  --overlay-photo: linear-gradient(90deg, #071B3D 0%, rgba(7,27,61,.55) 55%, rgba(7,27,61,0) 100%);

  --dur-instant: 100ms;
  --dur-fast: 150ms;
  --dur-base: 200ms;
  --dur-slow: 400ms;
  --ease-out: cubic-bezier(.2, 0, 0, 1);
  --ease-emphasis: cubic-bezier(.16, 1, .3, 1);

  --w-prose: 720px;
  --w-standard: 1200px;
  --w-wide: 1360px;
  --gutter: 24px;
  --section-y: 48px;
  --hdr-h: 76px;
  --logo-h: 48px;

  --ff-display: Archivo, "Helvetica Neue", Arial, sans-serif;
  --ff-body: "IBM Plex Sans", "Segoe UI", Roboto, system-ui, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Consolas, monospace;
}

@media (min-width: 768px)  { :root { --gutter: 32px; --section-y: 64px; --hdr-h: 88px; } }
@media (min-width: 1280px) { :root { --hdr-h: 92px; --logo-h: 54px; } }
@media (min-width: 1024px) { :root { --gutter: 48px; --section-y: 96px; } }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --navy-900: #0A0E16;
    --navy-700: #9FBDF0;
    --navy-500: #B9D0F6;
    --navy-100: #16203A;
    --green-500: #A8CC5C;
    --green-700: #A8CC5C;
    --green-050: #1A2412;
    --paper: #0E1117;
    --surface: #171B22;
    --surface-2: #1E232B;
    --ink-900: #ECEAE4;
    --ink-600: #B2ADA3;
    --ink-400: #8B867C;
    --border: #2E333C;
    --border-2: #232830;
    --oxide-600: #E09070;
    --oxide-050: #241612;
    --yellow-600: #D9AE58;
    --yellow-050: #241E10;
    --on-navy: #ECEAE4;
    --on-navy-dim: #9A9488;
    --navy-rule: #242A34;
    --navy-card: #131820;
    --focus-ring: #9FBDF0;
    --shadow-header: 0 1px 3px rgba(0, 0, 0, .5);
    --overlay-photo: linear-gradient(90deg, #0A0E16 0%, rgba(10,14,22,.6) 55%, rgba(10,14,22,0) 100%);
  }
}
:root[data-theme="dark"] {
  --navy-900: #0A0E16;
  --navy-700: #9FBDF0;
  --navy-500: #B9D0F6;
  --navy-100: #16203A;
  --green-500: #A8CC5C;
  --green-700: #A8CC5C;
  --green-050: #1A2412;
  --paper: #0E1117;
  --surface: #171B22;
  --surface-2: #1E232B;
  --ink-900: #ECEAE4;
  --ink-600: #B2ADA3;
  --ink-400: #8B867C;
  --border: #2E333C;
  --border-2: #232830;
  --oxide-600: #E09070;
  --oxide-050: #241612;
  --yellow-600: #D9AE58;
  --yellow-050: #241E10;
  --on-navy: #ECEAE4;
  --on-navy-dim: #9A9488;
  --navy-rule: #242A34;
  --navy-card: #131820;
  --focus-ring: #9FBDF0;
  --shadow-header: 0 1px 3px rgba(0, 0, 0, .5);
  --overlay-photo: linear-gradient(90deg, #0A0E16 0%, rgba(10,14,22,.6) 55%, rgba(10,14,22,0) 100%);
}

/* ═══════════════════════════════════════════════ 2 · BASE */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
:target, #main, [id] { scroll-margin-top: calc(var(--hdr-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-900);
  font: 400 16px/1.62 var(--ff-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(32px, 4vw, 46px); line-height: 1.10; letter-spacing: -.018em; font-weight: 700; }
h2 { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.16; letter-spacing: -.012em; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.006em; }
h4 { font-size: 17px; line-height: 1.35; }
p  { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 16px; padding-left: 20px; }
img, svg, picture { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

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

.skip {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--navy-700); color: var(--surface);
  padding: 10px 16px; border-radius: 2px; font: 600 14px var(--ff-display);
  text-decoration: none; transition: top var(--dur-fast) var(--ease-out);
}
.skip:focus { top: 8px; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════ 3 · LAYOUT */
.wrap  { width: 100%; max-width: var(--w-standard); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide  { max-width: var(--w-wide); }
.wrap--prose { max-width: calc(var(--w-prose) + var(--gutter) * 2); }

section { padding-block: var(--section-y); }
.band { background: var(--navy-900); color: var(--on-navy); }
.band h1, .band h2, .band h3, .band h4 { color: var(--on-navy); }
.alt { background: var(--surface-2); }

.lede { font-size: 18px; line-height: 1.65; color: var(--ink-600); max-width: 68ch; text-wrap: pretty; }
.band .lede { color: var(--on-navy-dim); }
.prose { max-width: 70ch; }
.prose p + h3 { margin-top: 32px; }
.prose h3 + p { margin-top: 8px; }

.eyebrow {
  font: 500 11px/1.4 var(--ff-mono);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400); margin: 0 0 12px;
}
.band .eyebrow { color: var(--green-500); }

/* the site's most repeated device: heading with a rule under it */
.sechead { margin-bottom: 32px; }
.sechead h2 { margin-bottom: 16px; }
.sechead::after {
  content: ""; display: block; height: 3px; margin-top: 20px;
  background: linear-gradient(90deg, var(--navy-700) 0 60%, var(--green-500) 60% 100%);
}
.band .sechead::after { background: linear-gradient(90deg, var(--green-500) 0 60%, var(--navy-rule) 60% 100%); }
.sechead .lede { margin-top: 12px; }

.rule { height: 1px; background: var(--border); border: 0; margin: 0; }

/* ═══════════════════════════════════════════════ 4 · HEADER */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-header);
}
.hdr__in {
  display: flex; align-items: center; gap: 16px;
  height: var(--hdr-h); transition: height var(--dur-base) var(--ease-out);
}
@media (min-width: 1280px) {
  .hdr.is-condensed .hdr__in { height: calc(var(--logo-h) + 20px); }
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
/* Below 480px the full lockup is illegible, so the mark carries the brand and
   the name is set as text beside it. The navy lockup would disappear against a
   dark header, so each theme gets the artwork drawn for it. */
.brand img { height: var(--logo-h); width: auto; display: none; }
.brand img.brand__mark { display: block; height: 56px; width: 56px; }
.brand__txt {
  display: block; font: 700 15px/1.16 var(--ff-display); color: var(--navy-700);
  letter-spacing: -.01em; max-width: 10ch;
}
@media (min-width: 480px) {
  .brand img.brand__mark, .brand__txt { display: none; }
  .brand img.brand__full--light { display: block; }
  .brand img.brand__full--dark  { display: none; }
  :root[data-theme="dark"] .brand img.brand__full--light { display: none; }
  :root[data-theme="dark"] .brand img.brand__full--dark  { display: block; }
}
@media (min-width: 480px) and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand img.brand__full--light { display: none; }
  :root:not([data-theme="light"]) .brand img.brand__full--dark  { display: block; }
}

.nav { display: none; }
@media (min-width: 1280px) {
  .nav { display: flex; align-items: center; gap: 4px; }
  .nav a {
    font: 600 14.5px var(--ff-display); color: var(--ink-900); text-decoration: none;
    padding: 10px 12px; border-radius: 2px; white-space: nowrap;
    transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  }
  .nav a:hover { color: var(--navy-700); background: var(--navy-100); }
  .nav a[aria-current="page"] { color: var(--navy-700); background: var(--navy-100); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 24px; border-radius: 2px; border: 1px solid transparent;
  font: 600 15px var(--ff-display); text-decoration: none; cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.btn--primary { background: var(--navy-700); color: var(--surface); }
.btn--primary:hover { background: var(--navy-500); }
.btn--ghost { border-color: var(--navy-700); color: var(--navy-700); background: transparent; }
.btn--ghost:hover { background: var(--navy-100); }
.band .btn--primary { background: var(--green-500); color: var(--navy-900); }
.band .btn--primary:hover { background: var(--on-navy); }
.band .btn--ghost { border-color: var(--on-navy-dim); color: var(--on-navy); }
.band .btn--ghost:hover { background: rgba(255, 255, 255, .08); }
.hdr .btn { display: none; }
@media (min-width: 1280px) {
  .hdr .btn {
    display: inline-flex; margin-left: 12px;
    min-height: 40px; padding: 8px 18px; font-size: 14px;
  }
}

.iconbtn, .burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; flex: none;
  background: none; border: 1px solid var(--border); border-radius: 2px;
  color: var(--ink-900); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.iconbtn:hover, .burger:hover { border-color: var(--navy-700); color: var(--navy-700); }
.burger { margin-right: -10px; }
@media (min-width: 1280px) { .burger { display: none; } }
.iconbtn svg, .burger svg { width: 20px; height: 20px; }
/* the toggle shows the theme it switches to, so it reads as a switch */
.iconbtn .sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .iconbtn .sun  { display: block; }
  :root:not([data-theme="light"]) .iconbtn .moon { display: none; }
}
:root[data-theme="dark"] .iconbtn .sun  { display: block; }
:root[data-theme="dark"] .iconbtn .moon { display: none; }
:root[data-theme="light"] .iconbtn .sun  { display: none; }
:root[data-theme="light"] .iconbtn .moon { display: block; }
.burger .x { display: none; }
.burger[aria-expanded="true"] .m { display: none; }
.burger[aria-expanded="true"] .x { display: block; }

.drawer {
  display: none; position: fixed; inset: var(--hdr-h) 0 0; z-index: 99;
  background: var(--surface); overflow-y: auto; padding: 8px var(--gutter) 40px;
  border-top: 1px solid var(--border);
}
.drawer.is-open { display: block; }
@media (min-width: 1280px) { .drawer.is-open { display: none; } }
.drawer a {
  display: flex; align-items: center; min-height: 56px;
  font: 600 18px var(--ff-display); color: var(--ink-900); text-decoration: none;
  border-bottom: 1px solid var(--border-2);
}
.drawer a[aria-current="page"] { color: var(--navy-700); }
.drawer .btn { width: 100%; margin-top: 24px; }

/* ═══════════════════════════════════════════════ 5 · HERO */
.hero { padding-block: var(--section-y); }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px); line-height: 1.04;
  letter-spacing: -.022em; font-weight: 700;
}
.hero .lede { margin-top: 20px; max-width: 60ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__band { margin-top: 48px; position: relative; }
.hero__band img { width: 100%; border-radius: 4px; }
.hero__band::after {
  content: ""; position: absolute; inset: 0; border-radius: 4px; pointer-events: none;
  background: var(--overlay-photo); opacity: .32;
}

/* the column count is chosen so the items fill the rows: four figures go 2x2
   then 4-up, three go one per row then 3-up. Neither leaves an empty cell. */
.proof {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: 48px; background: var(--navy-rule);
  border: 1px solid var(--navy-rule); border-radius: 4px; overflow: hidden;
}
.proof--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .proof--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .proof { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .proof--3 { grid-template-columns: repeat(3, 1fr); } }
.proof > div { background: var(--navy-900); padding: 20px 16px; }
.proof b {
  display: block; font: 700 clamp(24px, 3.4vw, 36px)/1.05 var(--ff-display);
  letter-spacing: -.01em; color: var(--on-navy); font-variant-numeric: tabular-nums;
}
.proof span {
  display: block; margin-top: 8px; font: 500 11px/1.4 var(--ff-mono);
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-500);
}

/* ═══════════════════════════════════════════════ 6 · TABLES */
.tscroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; font-variant-numeric: tabular-nums; }
caption { text-align: left; font: 500 11px/1.4 var(--ff-mono); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-400); padding-bottom: 12px; }

/* the capacity table — the most decision-relevant content on the site */
.cap { border: 1px solid var(--border); background: var(--surface); border-radius: 4px; overflow: hidden; }
.cap th, .cap td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border-2); }
.cap thead th {
  font: 500 11px/1.4 var(--ff-mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400); border-bottom: 3px solid var(--green-500); white-space: nowrap;
}
.cap tbody tr:last-child th, .cap tbody tr:last-child td { border-bottom: 0; }
.cap tbody th { font: 700 clamp(22px, 3vw, 30px)/1.05 var(--ff-display); color: var(--navy-700); white-space: nowrap; }
.cap tbody th small { display: block; font: 500 11px/1.4 var(--ff-mono); letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-400); margin-top: 6px; }
.cap tbody td { font: 500 15px var(--ff-mono); color: var(--ink-900); white-space: nowrap; }
.cap tbody td b { font: 700 20px var(--ff-display); color: var(--ink-900); }

/* the workhorse: a two-column specification block */
.spec { border: 1px solid var(--border); background: var(--surface); border-radius: 4px; }
.spec > div {
  display: grid; grid-template-columns: 1fr; gap: 4px;
  padding: 14px 20px; border-bottom: 1px solid var(--border-2);
}
.spec > div:last-child { border-bottom: 0; }
@media (min-width: 640px) {
  .spec > div { grid-template-columns: 15rem 1fr; gap: 24px; align-items: baseline; }
}
.spec dt { color: var(--ink-600); font-size: 14.5px; }
.spec dd {
  margin: 0; font: 500 15px var(--ff-mono); color: var(--ink-900);
  font-variant-numeric: tabular-nums; overflow-wrap: anywhere;
}
.spec .src {
  display: block; margin-top: 4px; font: 400 12px/1.45 var(--ff-body); color: var(--ink-400);
}

/* ═══════════════════════════════════════════════ 7 · CARDS AND GRIDS */
.grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
/* A grid item defaults to min-width:auto, so anything wide inside it — a
   drawing, a table, a long token — pushes the page sideways instead of
   scrolling in its own container. This is the fix for that, everywhere. */
.grid > *, .contactgrid > *, .places > *, .deflist > *, .ftr__in > * { min-width: 0; }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: 4px; background: var(--surface);
  text-decoration: none; color: inherit; overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
a.card:hover { border-color: var(--navy-700); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { a.card:hover { transform: none; } }
/* one ratio for every card, so a row of them shares its edges and baselines */
.card__fig {
  background: var(--surface-2); border-bottom: 1px solid var(--border);
  aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden;
}
.card__fig picture { display: block; width: 100%; height: 100%; }
.card__fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__fig--ico { background: var(--navy-100); }
.card__fig--ask { background: var(--navy-900); }
.card__fig--ask span {
  font: 700 clamp(48px, 8vw, 72px)/1 var(--ff-display); color: var(--green-500);
}
.card__fig--ico svg { width: 38%; height: auto; color: var(--navy-700); opacity: .8; }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__ico { width: 28px; height: 28px; color: var(--navy-700); }
.card h3 { color: var(--navy-700); }
.card__sub { font: 500 12px var(--ff-mono); letter-spacing: .06em; color: var(--ink-400);
  text-transform: uppercase; }
.card p { font-size: 14.5px; color: var(--ink-600); margin: 0; }
.card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 6px; }
.card__specs span {
  font: 500 12px var(--ff-mono); color: var(--ink-900); background: var(--surface-2);
  border: 1px solid var(--border-2); border-radius: 2px; padding: 3px 8px;
  font-variant-numeric: tabular-nums;
}
.card__more { font: 600 14px var(--ff-display); color: var(--green-700); }

/* ═══════════════════════════════════════════════ 8 · PROCESS */
.phase { margin-top: 40px; }
.phase__hd { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--navy-rule); }
.phase__hd h3 { color: var(--on-navy); }
.phase__hd span { font: 500 11px var(--ff-mono); letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-500); }

.steps { list-style: none; margin: 0; padding: 0; }
/* three children, so the columns are placed explicitly: without this the
   description falls into the 40 px number column and wraps a word per line */
.steps li {
  display: grid; grid-template-columns: 40px 1fr; gap: 8px 16px;
  padding: 16px 0; border-bottom: 1px solid var(--navy-rule); align-items: start;
}
.steps li > b  { grid-column: 1; grid-row: 1; }
.steps li > h4 { grid-column: 2; grid-row: 1; }
.steps li > p  { grid-column: 2; grid-row: 2; }
@media (min-width: 768px) {
  .steps li { grid-template-columns: 44px 13rem 1fr; gap: 20px; }
  .steps li > p { grid-column: 3; grid-row: 1; }
}
.steps b {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1.5px solid var(--green-500); color: var(--green-500);
  font: 500 13px var(--ff-mono); font-variant-numeric: tabular-nums;
}
.steps h4 { color: var(--on-navy); }
.steps p { color: var(--on-navy-dim); font-size: 14.5px; margin: 6px 0 0; }
@media (min-width: 768px) { .steps p { margin-top: 0; } }

.figbox {
  border: 1px solid var(--border); border-radius: 4px; background: var(--surface);
  padding: 12px; overflow-x: auto;
}
.band .figbox { border-color: var(--navy-rule); background: var(--navy-card); }
.figbox img { width: 100%; min-width: 640px; }
.figcap { margin-top: 12px; font-size: 14px; color: var(--ink-400); }
.band .figcap { color: var(--on-navy-dim); }

/* ═══════════════════════════════════════════════ 9 · MISC BLOCKS */
.pill {
  display: inline-block; border-radius: 999px; padding: 4px 12px;
  font: 500 11px var(--ff-mono); letter-spacing: .1em; text-transform: uppercase;
  background: var(--navy-100); color: var(--navy-700);
}
.band .pill { background: var(--navy-rule); color: var(--green-500); }

.pillar {
  border-top: 3px solid var(--green-500); padding-top: 20px;
  display: grid; grid-template-rows: auto auto auto 1fr; align-content: start;
}
.pillar b {
  display: block; font: 700 clamp(28px, 3.4vw, 40px)/1.05 var(--ff-display);
  color: var(--navy-700); font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.pillar b span { font-size: .45em; letter-spacing: 0; }
.pillar em {
  display: block; font: 500 11px/1.4 var(--ff-mono); font-style: normal;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); margin: 8px 0 16px;
}
.pillar h3 { margin-bottom: 8px; min-height: 2.5em; align-content: start; }
@media (max-width: 639px) { .pillar h3 { min-height: 0; } }
.pillar p { font-size: 14.5px; color: var(--ink-600); }

.note {
  border-left: 3px solid var(--yellow-600); background: var(--yellow-050);
  padding: 16px 20px; border-radius: 0 2px 2px 0; font-size: 15px;
}
.note strong { font-family: var(--ff-display); }

.deflist { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; }
.deflist > div { background: var(--surface); padding: 20px; }
.deflist h3 { color: var(--navy-700); margin-bottom: 4px; }
.deflist .fx { font: 500 12px var(--ff-mono); color: var(--ink-400); }
.deflist p { margin: 8px 0 0; font-size: 14.5px; color: var(--ink-600); }
@media (min-width: 640px)  { .deflist { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .deflist { grid-template-columns: repeat(3, 1fr); } }

.places { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .places { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .places { grid-template-columns: repeat(4, 1fr); } }
.places h3 { color: var(--on-navy); padding-bottom: 12px; border-bottom: 1px solid var(--navy-rule); }
.places ul { list-style: none; padding: 0; margin: 16px 0 0; }
.places li { padding: 6px 0 6px 20px; position: relative; color: var(--on-navy-dim); font-size: 15px; }
.places li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px; border-radius: 999px; background: var(--green-500);
}

.contactgrid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .contactgrid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.cinfo { list-style: none; padding: 0; margin: 0; }
.cinfo li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.cinfo li:last-child { border-bottom: 0; }
.cinfo dt, .cinfo .k {
  font: 500 11px var(--ff-mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400); margin-bottom: 6px;
}
.cinfo .v {
  font: 500 16px var(--ff-mono); color: var(--ink-900);
  font-variant-numeric: tabular-nums; overflow-wrap: anywhere;
}
.cinfo a { color: var(--navy-700); }

/* ═══════════════════════════════════════════════ 10 · FOOTER */
.ftr { background: var(--navy-900); color: var(--on-navy-dim); }
.ftr__rule { height: 4px; background: linear-gradient(90deg, var(--navy-700) 0 60%, var(--green-500) 60% 100%); }
.ftr__in { display: grid; gap: 32px; grid-template-columns: 1fr; padding-block: 48px; }
@media (min-width: 640px)  { .ftr__in { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ftr__in { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; } }
.ftr h2 { color: var(--on-navy); margin-bottom: 16px; font-size: 14px;
  font-family: var(--ff-mono); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { padding: 5px 0; }
.ftr a { color: var(--on-navy-dim); text-decoration: none; }
.ftr a:hover { color: var(--green-500); text-decoration: underline; }
.ftr img { height: 36px; width: auto; }
.ftr address { font-style: normal; font-size: 15px; line-height: 1.7; }
.ftr__legal {
  border-top: 1px solid var(--navy-rule); padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font: 500 12px var(--ff-mono); color: var(--on-navy-dim);
}

/* ═══════════════════════════════════════════════ 11 · MOTION */
.rise.pre { opacity: 0; transform: translateY(8px); }
.rise.in {
  opacity: 1; transform: none;
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .rise, .rise.pre { opacity: 1; transform: none; }
}

@media print {
  .hdr, .drawer, .burger, .hero__band, .ftr__rule { display: none !important; }
  body { background: #fff; color: #000; }
}
