/* =========================================================
   ORCUTT CONSTRUCTION — editorial / blueprint aesthetic
   Palette: bone / charcoal / copper / structural red
   ========================================================= */

:root {
  --bone: #ECE5D8;
  --bone-2: #E3DBCB;
  --ink: #161311;
  --ink-2: #2A241F;
  --copper: #B3551C;
  --copper-dim: #8B4513;
  --red: #C83A1E;
  --rule: rgba(22,19,17,0.18);
  --rule-soft: rgba(22,19,17,0.08);
  --paper: #F3EDE0;

  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

html { scroll-behavior: smooth; background: var(--bone); }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bone);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(179,85,28,0.06), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(22,19,17,0.05), transparent 55%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ---- grain overlay ---- */
.grain {
  pointer-events: none;
  position: fixed; inset: 0;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.07  0 0 0 0 0.06  0 0 0 0.22 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

/* ---- blueprint grid overlay (subtle lines top) ---- */
.blueprint {
  pointer-events: none;
  position: fixed; inset: 0;
  z-index: 99;
  background-image:
    linear-gradient(to right, rgba(22,19,17,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22,19,17,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ---- left ruler ---- */
.ruler {
  position: fixed;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex; flex-direction: column;
  gap: 14px;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(22,19,17,0.35);
  letter-spacing: 0.1em;
}
.ruler span { line-height: 1; }
@media (max-width: 900px) { .ruler { display: none; } }

/* ================= NAV ================= */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 64px);
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule-soft);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-mark { width: 28px; height: 28px; color: var(--ink); }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  font-variation-settings: "opsz" 40, "SOFT" 60;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22,19,17,0.55);
  margin-top: 3px;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a:not(.nav-cta):hover { color: var(--copper); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--copper);
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--copper); border-color: var(--copper); }
.nav-cta span { margin-left: 6px; display: inline-block; transition: transform 0.3s; }
.nav-cta:hover span { transform: translateX(4px); }

@media (max-width: 780px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 100px) clamp(24px, 5vw, 64px) 60px;
}

.hero-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22,19,17,0.6);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
  margin-bottom: 40px;
}
.meta-o { font-size: 0.8em; vertical-align: super; }
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; gap: 6px; align-items: flex-start; }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(62px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin-bottom: 50px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.h-row { display: block; opacity: 0; transform: translateY(40px); animation: rise 1s cubic-bezier(0.2,0.7,0.2,1) forwards; }
.h-row-1 { animation-delay: 0.08s; }
.h-row-2 { animation-delay: 0.22s; padding-left: clamp(40px, 12vw, 240px); }
.h-row-3 { animation-delay: 0.36s; }
.h-row-4 { animation-delay: 0.50s; padding-left: clamp(20px, 6vw, 140px); }
.amp { font-style: italic; color: var(--copper); font-weight: 300; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo-b { display: none; }
}
@media (max-width: 640px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 4/5;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 1.4s cubic-bezier(0.2,0.7,0.2,1);
}
.hero-photo:hover img { transform: scale(1.04); }
.hero-photo figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(22,19,17,0.75);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
.hero-photo figcaption span {
  color: var(--copper);
  margin-right: 8px;
}
.hero-photo-a { aspect-ratio: 4/5; }
.hero-photo-b { aspect-ratio: 4/5; margin-top: 60px; }

.hero-blurb {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.blurb-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.blurb-body {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  font-variation-settings: "opsz" 14, "SOFT" 50;
  color: var(--ink-2);
}
.blurb-body strong { color: var(--ink); font-weight: 500; }
.blurb-cta {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  transition: gap 0.3s, color 0.3s;
}
.blurb-cta:hover { gap: 16px; color: var(--copper); }

.hero-footnote {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 60px;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.hero-footnote b { color: var(--copper); font-weight: 600; }
.dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(200,58,30, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,58,30, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(200,58,30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200,58,30, 0); }
}

/* ================= MARQUEE ================= */
.marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  padding: 20px 0;
}
.marquee-track {
  display: flex; gap: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 54px);
  white-space: nowrap;
  animation: slide 40s linear infinite;
  font-variation-settings: "opsz" 100, "SOFT" 100;
}
.marquee-track .sep { color: var(--copper); }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= SECTION BASE ================= */
.section-head {
  padding: clamp(60px, 9vw, 120px) clamp(24px, 5vw, 64px) 40px;
  max-width: 1400px;
}
.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--copper);
  margin-bottom: 28px;
}
.section-tag.dark { color: var(--bone); border-color: rgba(236,229,216,0.4); }

.section-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 80, "SOFT" 50;
  max-width: 15ch;
}
.section-h em {
  font-style: italic;
  color: var(--copper);
  font-weight: 300;
}
.section-lede {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 52ch;
  margin-top: 24px;
}

/* ================= WORK / PROJECTS ================= */
.work { padding-bottom: 60px; }

.projects {
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px 24px;
}

.project { display: flex; flex-direction: column; }
.project-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-2);
  margin-bottom: 16px;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.2,0.7,0.2,1), filter 0.4s;
}
.project:hover .project-img img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.1);
}

.project-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
  padding: 14px 0;
  border-top: 1px solid var(--ink);
}
.p-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--copper);
  padding-top: 4px;
}
.project-meta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 40, "SOFT" 40;
  margin-bottom: 10px;
}
.project-meta dl {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.project-meta dt { color: rgba(22,19,17,0.5); }
.project-meta dd { color: var(--ink); }

/* asymmetric project layout */
.project-1 { grid-column: span 7; }
.project-2 { grid-column: span 5; margin-top: 80px; }
.project-3 { grid-column: span 5; }
.project-4 { grid-column: span 4; margin-top: 60px; }
.project-5 { grid-column: span 8; }
.project-6 { grid-column: span 6; grid-column-start: 4; margin-top: 40px; }

@media (max-width: 1000px) {
  .project-1, .project-2, .project-3, .project-4, .project-5, .project-6 {
    grid-column: span 6;
    grid-column-start: auto;
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .project-1, .project-2, .project-3, .project-4, .project-5, .project-6 {
    grid-column: span 12;
  }
}

/* ================= CRAFT (pull quote) ================= */
.craft {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.craft::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(236,229,216,0.1);
  pointer-events: none;
}
.craft-inner { max-width: 1100px; margin: 0 auto; position: relative; }

.pull-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 100, "SOFT" 60;
  margin-top: 40px;
  position: relative;
}
.pull-quote em {
  font-style: italic;
  color: var(--copper);
  font-weight: 200;
  font-variation-settings: "opsz" 100, "SOFT" 100;
}
.quote-mark {
  font-family: var(--serif);
  font-size: clamp(100px, 18vw, 240px);
  line-height: 0;
  color: var(--copper);
  position: absolute;
  left: -0.1em; top: 0.45em;
  opacity: 0.3;
  font-weight: 600;
}
.pull-cite {
  display: block;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236,229,216,0.7);
  font-style: normal;
}

/* ================= SERVICES ================= */
.services { padding-bottom: 80px; }

.svc-grid {
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
}

.svc {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.4s;
}
.svc:last-child { border-right: none; }
@media (max-width: 900px) {
  .svc { border-right: none; border-bottom: 1px solid var(--rule); }
  .svc:last-child { border-bottom: none; }
}
.svc:hover { background: var(--paper); }

.svc-feature { background: var(--paper); }

.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--copper);
  margin-bottom: 24px;
}
.svc-icon {
  width: 70px; height: 70px;
  color: var(--ink);
  margin-bottom: 28px;
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.svc:hover .svc-icon { transform: translateY(-4px) rotate(-2deg); }

.svc h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 40, "SOFT" 40;
  margin-bottom: 16px;
}
.svc p {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.svc-list {
  list-style: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.svc-list li {
  padding: 8px 0;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center;
}
.svc-list span {
  color: var(--copper);
  margin-right: 10px;
  font-weight: 500;
}

/* ================= CONNOR ================= */
.connor {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(60px, 9vw, 120px) clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--rule);
}
@media (max-width: 900px) {
  .connor { grid-template-columns: 1fr; }
}

.connor-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-2);
}
.connor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.95);
}
.connor-badge {
  position: absolute;
  right: -18px; top: 30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--bone);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: spin 25s linear infinite;
  box-shadow: 0 6px 30px rgba(179,85,28,0.3);
}
.connor-badge .b-big {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 2px 0;
  font-variation-settings: "opsz" 40, "SOFT" 80;
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.connor-text .section-tag { margin-top: 0; }
.connor-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.connor-stats li {
  padding: 24px 16px 24px 0;
  border-right: 1px solid var(--rule);
}
.connor-stats li:last-child { border-right: none; }
.connor-stats b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--copper);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  margin-bottom: 8px;
}
.connor-stats span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.4;
  display: block;
}
.connor-text p {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 24px;
  max-width: 52ch;
}

/* ================= CONTACT ================= */
.contact {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: '';
  position: absolute;
  right: -200px; bottom: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(179,85,28,0.25), transparent 70%);
  pointer-events: none;
}
.contact-inner { max-width: 1300px; margin: 0 auto; position: relative; }

.contact-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(50px, 8.5vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin: 30px 0 60px;
}
.contact-h span { display: block; }
.contact-h span:nth-child(2) { padding-left: clamp(30px, 8vw, 160px); }
.contact-h span:nth-child(4) { padding-left: clamp(20px, 5vw, 100px); }
.contact-h em {
  font-style: italic;
  color: var(--copper);
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(236,229,216,0.2);
  border: 1px solid rgba(236,229,216,0.2);
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

.c-card {
  background: var(--ink);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px;
  transition: background 0.4s, color 0.4s;
  position: relative;
  overflow: hidden;
}
.c-card[href]:hover { background: var(--copper); }
.c-card[href]::before {
  content: '→';
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--copper);
  transition: transform 0.3s, color 0.3s;
}
.c-card[href]:hover::before { transform: translate(6px, -4px); color: var(--bone); }

.c-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236,229,216,0.5);
  margin-bottom: 14px;
}
.c-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 40, "SOFT" 40;
  color: var(--bone);
  word-break: break-word;
}
.c-sub {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: rgba(236,229,216,0.6);
  font-variation-settings: "opsz" 14, "SOFT" 100;
}

/* ================= FOOT ================= */
.foot {
  background: var(--bone);
  padding: 40px clamp(24px, 5vw, 64px) 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.foot-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
  font-variation-settings: "opsz" 40, "SOFT" 40;
}
.foot-brand .brand-mark { width: 24px; height: 24px; }
.foot-social { display: flex; gap: 24px; }
.foot-social a { transition: color 0.3s; }
.foot-social a:hover { color: var(--copper); }

.foot-bot {
  display: flex; justify-content: space-between;
  padding-top: 20px;
  color: rgba(22,19,17,0.55);
}
.foot-mono { color: var(--copper); }
@media (max-width: 640px) {
  .foot-top, .foot-bot { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ================= MOTION REDUCE ================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .h-row { opacity: 1; transform: none; }
}
