/* ==========================================================================
   Webdivision — Stylesheet (v2, Resend-inspired)
   Pure black canvas, off-white/gray text, serif headlines + Inter body,
   dot-grid texture, ambient edge glow, pill controls.
   ========================================================================== */

:root {
  --bg: #000000;
  --ink: #f0f0f0;
  --muted: #a1a4a5;
  --muted-dim: #6f7274;
  --line: rgba(240, 240, 240, 0.12);
  --line-strong: rgba(240, 240, 240, 0.22);
  --surface: rgba(240, 240, 240, 0.035);
  --surface-hover: rgba(240, 240, 240, 0.07);
  --glow: rgba(240, 240, 240, 0.5);
  --reveal-red: #e03a2a;

  --serif: "Source Serif 4", "Iowan Old Style", serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --wrap: 1240px;
  --pad: clamp(24px, 5vw, 64px);
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Dot-grid texture ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(240, 240, 240, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -4px -4px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 85%);
}

/* ---------- Ambient edge glow around the viewport ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  box-shadow:
    inset 0 0 140px 0 rgba(240, 240, 240, 0.07),
    inset 0 0 40px 0 rgba(240, 240, 240, 0.08);
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted-dim);
}

p { margin: 0; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--reveal-red);
  display: inline-block;
}
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  background: rgba(240, 240, 240, 0.03);
  color: var(--ink);
}
.btn-primary {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(240, 240, 240, 0.35);
  transform: translateY(-1px);
}
.btn-ghost:hover {
  background: rgba(240, 240, 240, 0.09);
  border-color: var(--ink);
}
.btn-accent {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}
.btn-accent:hover {
  box-shadow: 0 0 24px rgba(240, 240, 240, 0.35);
  transform: translateY(-1px);
}
.btn svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translate(3px, -3px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo em {
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--ink);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: #050505;
    border-left: 1px solid var(--line);
    color: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px var(--pad);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.7,0,.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; font-family: var(--serif); color: var(--ink); }
  body.menu-open { overflow: hidden; }
}

/* ==========================================================================
   Hero — centered, Resend-style
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 56px) 0 clamp(60px, 8vw, 90px);
  overflow: hidden;
  text-align: center;
}
.hero-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto 32px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(240,240,240,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.08;
  max-width: 16ch;
  margin: 0 auto;
  font-weight: 400;
}
.hero h1 .dim { color: var(--muted-dim); }

/* ---------- Kinetic word reveal (all page headings) ---------- */
.reveal-word {
  --end-color: var(--ink);
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(10px);
  color: var(--muted-dim);
  animation: word-reveal 2.6s cubic-bezier(.19,.84,.28,1) both;
  animation-play-state: paused;
}
.reveal-word--dim {
  --end-color: var(--muted-dim);
}
.kinetic-in .reveal-word {
  animation-play-state: running;
}
@keyframes word-reveal {
  0% {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(14px);
    color: var(--muted-dim);
    text-shadow: 0 0 0 rgba(224,58,42,0);
  }
  38% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  52% {
    color: var(--reveal-red);
    text-shadow: 0 0 32px rgba(224,58,42,0.8);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    color: var(--end-color);
    text-shadow: 0 0 0 rgba(224,58,42,0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-word {
    animation: none;
    animation-play-state: running;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
.hero-sub {
  max-width: 46ch;
  margin: 26px auto 0;
  font-size: 18px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: var(--muted-dim);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-meta strong { color: var(--muted); font-weight: 500; }

@media (max-width: 860px) {
  .hero-meta { gap: 20px; }
}

/* ==========================================================================
   Marquee / industries ticker
   ========================================================================== */
.marquee-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(240, 240, 240, 0.02);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: scroll-left 32s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  padding: 0 30px;
  color: var(--muted);
}
.marquee-track span::after {
  content: "\2022";
  margin-left: 30px;
  color: var(--line-strong);
  font-style: normal;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
section { position: relative; }
.section-pad { padding: clamp(70px, 9vw, 120px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-top: 14px;
  max-width: 16ch;
  font-weight: 400;
}
.section-head .lead {
  max-width: 34ch;
  color: var(--muted);
  font-size: 15.5px;
  text-align: right;
}
.section-head.center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section-head.center h2 { max-width: 20ch; }
.section-head.center .lead { text-align: center; max-width: 44ch; margin-top: 8px; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .lead { text-align: left; }
}

.divider { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Intro / two column ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.intro-grid h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
}
.intro-grid .body-copy {
  color: var(--muted);
  font-size: 17px;
}
.intro-grid .body-copy + .body-copy { margin-top: 18px; }
.intro-grid a { color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.intro-grid a:hover { border-color: var(--ink); }
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 28px;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--surface); }
.service-card .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted-dim);
  font-size: 15px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 400;
  margin-top: 14px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
}
@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats band ---------- */
.stats-band {
  background: rgba(240, 240, 240, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 50px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(160deg, #fff, #83898b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat p {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dim);
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ---------- Approach pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.pillar { text-align: center; }
.pillar .index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  color: var(--muted-dim);
}
.pillar h3 {
  font-size: 21px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 12px;
}
.pillar p { color: var(--muted); font-size: 15px; }
@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(70px, 10vw, 120px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(240,240,240,0.06), transparent 70%);
}
.cta-band h2 {
  font-size: clamp(30px, 5vw, 58px);
  max-width: 18ch;
  margin: 0 auto;
  font-weight: 400;
}
.cta-band h2 .dim { color: var(--muted-dim); }
.cta-band p {
  margin: 22px auto 34px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 16.5px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #000;
  color: var(--ink);
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-grid .logo { color: var(--ink); }
.footer-grid p { color: var(--muted-dim); font-size: 14.5px; margin-top: 16px; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--muted); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 13px;
  color: var(--muted-dim);
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Page header (About / Services / Contact) — centered
   ========================================================================== */
.page-header {
  padding: clamp(60px, 10vw, 110px) 0 clamp(50px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-header h1 {
  font-size: clamp(34px, 5.4vw, 68px);
  max-width: 18ch;
  margin: 16px auto 0;
  font-weight: 400;
}
.page-header h1 .dim { color: var(--muted-dim); }
.page-header .lead {
  margin: 24px auto 0;
  max-width: 52ch;
  font-size: 17px;
  color: var(--muted);
}

/* ---------- Founder block (About) ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.founder-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #141414 0%, #000 70%);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.92);
  z-index: 0;
}
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 42%, transparent 62%);
  z-index: 1;
  pointer-events: none;
}
.founder-portrait::before {
  content: "TB";
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(240,240,240,0.75);
  z-index: 2;
}
.founder-portrait span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 15px;
  position: relative;
  z-index: 2;
}
.founder-copy .quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
}
.founder-copy .quote::before { content: open-quote; color: var(--muted-dim); }
.founder-copy .quote::after { content: close-quote; color: var(--muted-dim); }
.founder-copy .attribution {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.founder-copy .attribution strong { color: var(--ink); font-weight: 600; }
.founder-bio { margin-top: 30px; color: var(--muted); font-size: 16px; }
.founder-bio + .founder-bio { margin-top: 16px; }
@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; }
}

/* ---------- Timeline (About) ---------- */
.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-row .yr {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted-dim);
  font-size: 17px;
}
.timeline-row h3 { font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.timeline-row p { color: var(--muted); font-size: 15px; max-width: 60ch; }
@media (max-width: 600px) {
  .timeline-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Industries list (About) ---------- */
.industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.industry-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 28px;
}
.industry-item h3 { font-size: 17px; font-weight: 400; margin-bottom: 8px; display:flex; align-items:center; gap:10px;}
.industry-item h3::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  display: inline-block;
}
.industry-item p { font-size: 14px; color: var(--muted); }
@media (max-width: 700px) {
  .industries-list { grid-template-columns: 1fr; }
}

/* ---------- Client types (About) ---------- */
.client-types {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.client-chip {
  border: 1px solid var(--line-strong);
  padding: 11px 22px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.client-chip:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Services detail (Services page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-detail:first-of-type { border-top: 1px solid var(--line); }
.service-detail .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted-dim);
  font-size: 21px;
}
.service-detail h3 { font-size: 23px; font-weight: 400; max-width: 16ch; }
.service-detail p { color: var(--muted); font-size: 15.5px; }
.service-detail .tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-detail .tags span {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-dim);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
@media (max-width: 860px) {
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 4px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field select option { background: #0a0a0a; color: var(--ink); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--muted-dim); margin-top: 18px; }

.contact-info { border-left: 1px solid var(--line); padding-left: 50px; }
.contact-info h4 {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 10px;
}
.contact-info .val {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 34px;
  color: var(--ink);
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 34px; }
}
