/* ============================================================
   EZ WEB DESIGN — Engineered restraint design system
   Palette: graphite + soft paper + brushed silver + muted brass
   Type: Archivo (display) / Hanken Grotesk (body) / Space Mono (spec)
   ============================================================ */

:root {
  /* Color */
  --ink:        #16181c;   /* near-black graphite */
  --ink-soft:   #3a3e45;   /* secondary text */
  --ink-mute:   #a8adb6;   /* muted captions */
  --paper:      #f5f4f1;   /* soft warm showroom floor */
  --paper-2:    #efeee9;   /* recessed light surface */
  --surface:    #ffffff;   /* card */
  --line:       #dcdad3;   /* hairline on light */
  --line-dark:  #34383f;   /* hairline on dark */
  --silver:     #d8dce2;   /* metallic detail on dark */
  --silver-2:   #b8bdc6;
  --brass:      #9c7c4e;   /* the single warm accent (light bg) */
  --brass-soft: #cba978;   /* warm accent on dark bg */

  /* Type */
  --display: "Archivo", "Arial Narrow", sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Scale */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --r: 4px;          /* tight, engineered radius */
  --r-lg: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--paper); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: var(--r); z-index: 200;
  font: 600 13px/1 var(--mono); letter-spacing: .04em;
  transition: top .2s var(--ease);
}
.skip:focus { top: 16px; }

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

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(72px, 11vw, 144px); }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }
.section.dark { background: var(--ink); color: var(--paper); }
.section.alt  { background: var(--paper-2); }

/* ---------- Typographic primitives ---------- */
.eyebrow {
  font: 500 12px/1 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--brass); display: inline-block;
}
.dark .eyebrow { color: var(--silver); }
.dark .eyebrow::before { background: var(--brass-soft); }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.06; letter-spacing: -0.012em; }

.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: clamp(-0.02em, -0.01em, -0.005em);
  line-height: 1.04;
  font-size: clamp(2.5rem, 7.6vw, 5.6rem);
  text-wrap: balance;
}
.h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); letter-spacing: -0.015em; line-height: 1.08; text-wrap: balance; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.01em; }

.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  text-wrap: pretty;
}
.dark .lede { color: #cfd1d4; }

.muted { color: var(--ink-mute); }
.dark .muted { color: var(--silver-2); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: .7em;
  background: var(--bg); color: var(--fg);
  font: 600 14px/1 var(--body); letter-spacing: .01em;
  padding: 15px 26px; border-radius: var(--r);
  border: 1px solid var(--bg);
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arr { transform: translateX(4px); }

.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.dark .btn { --bg: var(--paper); --fg: var(--ink); }
.dark .btn--ghost { --bg: transparent; --fg: var(--paper); border-color: var(--line-dark); }
.dark .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font: 600 14px/1 var(--body);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.textlink .arr { transition: transform .3s var(--ease); }
.textlink:hover { gap: .8em; }
.textlink:hover .arr { transform: translateX(3px); }
.dark .textlink { border-color: var(--brass-soft); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 30px; height: 30px; border-radius: var(--r);
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font: 800 14px/1 var(--display); letter-spacing: -0.04em;
}
.brand__name { font: 800 17px/1 var(--display); letter-spacing: -0.02em; }
.brand__name span { color: var(--brass); }

.nav__menu { display: flex; align-items: center; gap: 10px; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font: 500 14px/1 var(--body);
  padding: 9px 14px; border-radius: var(--r);
  color: var(--ink-soft);
  position: relative;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--paper-2); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--brass); border-radius: 2px;
}
.nav__cta { margin-left: 10px; }
.nav__cta .btn { padding: 11px 20px; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: var(--r); cursor: pointer;
  position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 12px; width: 18px; height: 1.6px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span { top: 21px; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 72px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__links a { padding: 14px 8px; font-size: 1.05rem; }
  .nav__links a[aria-current="page"]::after { left: 8px; right: auto; width: 18px; }
  .nav__cta { margin: 14px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; padding: 15px; }
}

@media (max-width: 480px) {
  h1, h2, h3, .display { letter-spacing: -0.005em; word-spacing: 0.02em; }
  .display { line-height: 1.08; }
  .eyebrow { letter-spacing: .14em; word-spacing: 0.06em; }
  body { overflow-wrap: break-word; word-break: normal; }
}

/* ============================================================
   HERO (dark "showroom")
   ============================================================ */
.hero {
  position: relative; background: var(--ink); color: var(--paper);
  overflow: hidden;
  padding-block: clamp(96px, 16vw, 188px);
}
.hero__sheen {
  position: absolute; inset: -40% -10%; pointer-events: none; z-index: 0;
  background: radial-gradient(60% 80% at 30% 20%, rgba(203,169,120,0.10), transparent 60%),
              radial-gradient(50% 70% at 80% 90%, rgba(174,178,184,0.10), transparent 60%);
}
.hero__sheen::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.05) 48%, transparent 60%);
  transform: translateX(-30%);
  animation: drift 14s var(--ease) infinite;
}
@keyframes drift {
  0%, 100% { transform: translateX(-35%); }
  50% { transform: translateX(35%); }
}
.hero .wrap { position: relative; z-index: 1; }
.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { max-width: 16ch; }
.hero__sub { margin-top: 26px; }
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* blueprint measurement rule */
.rule {
  margin-top: 56px; position: relative; height: 30px;
  border-top: 1px solid var(--line-dark);
}
.rule__ticks {
  position: absolute; inset: 0 0 auto 0; height: 9px;
  background-image: repeating-linear-gradient(90deg, var(--line-dark) 0 1px, transparent 1px 56px);
  opacity: .8;
}
.rule__label {
  position: absolute; top: 13px; font: 500 11px/1 var(--mono);
  letter-spacing: .18em; color: var(--silver-2); text-transform: uppercase;
}
.rule__label--l { left: 0; }
.rule__label--r { right: 0; }

/* page hero (about/services/contact) — slimmer */
.phero { padding-block: clamp(88px, 13vw, 150px); }
.phero h1 { max-width: 18ch; }
.phero__lede { margin-top: 24px; }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.cols { display: grid; gap: clamp(28px, 4vw, 56px); }
.cols--2 { grid-template-columns: 1fr 1fr; }
.cols--split { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
@media (max-width: 820px) { .cols--2, .cols--split { grid-template-columns: 1fr; } }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head .eyebrow { margin-bottom: 20px; }
.section__head .lede { margin-top: 18px; }

/* ============================================================
   CAPABILITIES (light list)
   ============================================================ */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.cap { background: var(--paper); padding: 34px 30px; }
.cap__no { font: 500 12px/1 var(--mono); color: var(--brass); letter-spacing: .1em; }
.cap h3 { margin: 18px 0 10px; }
.cap p { color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 760px) { .caps { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS (dark, real sequence)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 30px 26px 30px 0; border-top: 1px solid var(--line-dark); }
.step__no { font: 700 13px/1 var(--mono); color: var(--brass-soft); letter-spacing: .1em; }
.step h3 { margin: 22px 0 12px; color: var(--paper); }
.step p { color: var(--silver); font-size: .95rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   WORK INDEX (typographic, no images)
   ============================================================ */
.work { border-top: 1px solid var(--line); }
.work__row {
  display: grid; grid-template-columns: 2.2fr 1.4fr auto auto;
  gap: 24px; align-items: baseline;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.work__row:hover { padding-left: 14px; }
.work__name { font: 800 clamp(1.3rem,2.4vw,1.9rem)/1 var(--display); letter-spacing: -0.02em; }
.work__cat { color: var(--ink-soft); font-size: .98rem; }
.work__tag { font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.work__yr { font: 500 13px/1 var(--mono); color: var(--ink-mute); }
@media (max-width: 720px) {
  .work__row { grid-template-columns: 1fr auto; row-gap: 8px; }
  .work__cat { grid-column: 1 / -1; order: 3; }
  .work__tag { display: none; }
}

/* ============================================================
   TIERS (services)
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 30px 32px;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(22,24,28,.30); }
.tier--feature {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.tier--feature .tier__name { color: var(--paper); }
.tier__flag {
  position: absolute; top: -12px; left: 30px;
  background: var(--brass); color: #fff;
  font: 600 11px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 100px;
}
.tier__series { font: 500 12px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }
.tier--feature .tier__series { color: var(--brass-soft); }
.tier__name { font: 800 clamp(1.5rem,2.4vw,1.9rem)/1.05 var(--display); letter-spacing: -0.02em; margin: 14px 0 6px; }
.tier__tagline { font-size: .96rem; color: var(--ink-soft); min-height: 2.9em; }
.tier--feature .tier__tagline { color: #cdd0d3; }
.tier__price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 6px; }
.tier__price .cur { font: 600 18px/1 var(--mono); color: var(--ink-mute); }
.tier--feature .tier__price .cur { color: var(--silver); }
.tier__price .amt { font: 800 clamp(2.2rem,4vw,2.9rem)/1 var(--display); letter-spacing: -0.03em; }
.tier__price .note { font: 500 12px/1 var(--mono); color: var(--ink-mute); letter-spacing: .04em; }
.tier__div { height: 1px; background: var(--line); margin: 24px 0; }
.tier--feature .tier__div { background: var(--line-dark); }
.tier__incl { font: 500 11px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; }
.tier--feature .tier__incl { color: var(--silver); }
.tier ul { list-style: none; padding: 0; display: grid; gap: 13px; flex: 1; }
.tier li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; font-size: .96rem; line-height: 1.45; color: var(--ink-soft); }
.tier--feature li { color: #d9dbde; }
.tier li svg { margin-top: 3px; color: var(--brass); }
.tier--feature li svg { color: var(--brass-soft); }
.tier .btn { margin-top: 28px; width: 100%; justify-content: center; }
.tier--feature .btn { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }
.tier--feature .btn--ghost { --bg: transparent; --fg: var(--paper); border-color: var(--line-dark); }
.tier--feature .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
@media (max-width: 940px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   ADD-ONS (spec table)
   ============================================================ */
.addons { border-top: 1px solid var(--line); }
.addon {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.addon__main h3 { font: 800 1.15rem/1.2 var(--display); letter-spacing: -0.01em; }
.addon__main p { color: var(--ink-mute); font-size: .94rem; margin-top: 5px; max-width: 60ch; }
.addon__price { font: 500 14px/1 var(--mono); white-space: nowrap; text-align: right; }
.addon__price b { font-weight: 700; }
.addon__price .from { color: var(--brass); display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
@media (max-width: 560px) {
  .addon { grid-template-columns: 1fr; gap: 10px; }
  .addon__price { text-align: left; }
}

/* ============================================================
   ABOUT — bio, principles, spec sheet
   ============================================================ */
.bio p { font-size: 1.08rem; color: var(--ink-soft); max-width: 64ch; }
.bio p + p { margin-top: 22px; }
.bio .pull {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.15; color: var(--ink);
  border-left: 2px solid var(--brass); padding-left: 24px; margin: 38px 0;
  max-width: 24ch; text-wrap: balance;
}

.principles { list-style: none; padding: 0; display: grid; gap: 0; }
.principle { padding: 26px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle__no { font: 700 13px/1 var(--mono); color: var(--brass); padding-top: 4px; }
.principle h3 { font: 800 1.2rem/1.2 var(--display); letter-spacing: -0.01em; margin-bottom: 8px; }
.principle p { color: var(--ink-soft); font-size: .98rem; }

.spec {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-lg); padding: 32px 30px;
}
.spec__title { font: 500 11px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--silver); margin-bottom: 24px; }
.spec__row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line-dark); font-size: .92rem; }
.spec__row:first-of-type { border-top: 0; }
.spec__row dt { color: var(--silver); font-family: var(--mono); font-size: 12px; letter-spacing: .06em; }
.spec__row dd { text-align: right; color: var(--paper); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font: 800 1.12rem/1.3 var(--display); letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s var(--ease); }
.faq summary .ic::before, .faq summary .ic::after { content: ""; position: absolute; background: var(--brass); border-radius: 2px; }
.faq summary .ic::before { left: 0; right: 0; top: 10px; height: 2px; }
.faq summary .ic::after { top: 0; bottom: 0; left: 10px; width: 2px; transition: transform .3s var(--ease); }
.faq details[open] summary .ic::after { transform: scaleY(0); }
.faq details[open] summary { color: var(--brass); }
.faq__body { padding: 0 0 26px; color: var(--ink-soft); max-width: 70ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font: 600 13px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  -webkit-appearance: none; appearance: none;
  font: 400 16px/1.5 var(--body); color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 16px; width: 100%; box-sizing: border-box; height: auto;
  margin: 0; display: block;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(156,124,78,.18);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form .btn { justify-self: start; }

.contact-aside { display: grid; gap: 26px; align-content: start; }
.contact-item .eyebrow { margin-bottom: 10px; }
.contact-item a, .contact-item p { font: 800 1.25rem/1.2 var(--display); letter-spacing: -0.01em; }
.contact-item a { display: block; border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: border-color .25s var(--ease); word-break: break-all; }
.contact-item a:hover { border-color: var(--brass); }

/* ============================================================
   CTA band
   ============================================================ */
.cta { text-align: center; }
.cta h2 { max-width: 18ch; margin-inline: auto; }
.cta .lede { margin: 22px auto 0; text-align: center; }
.cta__actions { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink); color: var(--paper); padding-block: 64px 36px; }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot__brand .brand__name { color: var(--paper); }
.foot__brand p { color: var(--silver); margin-top: 16px; max-width: 34ch; font-size: .95rem; }
.foot__col h4 { font: 500 11px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--silver-2); margin-bottom: 18px; }
.foot__col a, .foot__col p { display: block; color: var(--silver); font-size: .96rem; padding: 6px 0; transition: color .25s var(--ease); }
.foot__col a:hover { color: var(--paper); }
.foot__bar {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font: 500 12px/1.6 var(--mono); letter-spacing: .04em; color: var(--silver-2);
}
@media (max-width: 720px) { .foot__top { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .foot__top { grid-template-columns: 1fr; } }

/* ============================================================
   SKELETON LOADERS
   ============================================================ */
.skeleton {
  position: relative; overflow: hidden;
  background: color-mix(in srgb, var(--ink) 8%, var(--paper));
  border-radius: var(--r);
}
.dark .skeleton { background: color-mix(in srgb, var(--paper) 10%, var(--ink)); }
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--paper) 55%, transparent), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.6s infinite;
}
.dark .skeleton::after {
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--silver) 18%, transparent), transparent);
}
@keyframes shimmer { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .skeleton::after { animation: none; } }

.img-wrap { position: relative; }
.img-wrap .skeleton { position: absolute; inset: 0; }
.img-wrap img { position: relative; z-index: 1; opacity: 0; transition: opacity .4s var(--ease); }
.img-wrap img.loaded { opacity: 1; }
.img-wrap img.loaded ~ .skeleton { display: none; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
