/* =========================================================================
   Digital DP — Editorial Tech design system
   Black & white. Instrument Serif (display) · Hanken Grotesk (UI/body)
   · JetBrains Mono (labels). Hairline rules + mono index labels.
   ========================================================================= */

:root {
  /* Ink scale */
  --ink:        #0c0c0d;
  --ink-80:     #2a2a2c;
  --ink-60:     #5b5b5e;
  --ink-45:     #86868a;
  --ink-30:     #b4b4b7;
  --line:       #e4e3df;
  --line-2:     #efeeea;

  /* Surfaces */
  --bg:         #ffffff;
  --paper:      #f4f3ef;   /* warm off-white section */
  --black:      #0c0c0d;   /* inverted sections */
  --black-2:    #161617;

  /* On dark */
  --on-dark:    #f5f4f1;
  --on-dark-60: #9c9c9e;
  --on-dark-line: #2a2a2c;

  /* Rare accent — used almost never, on purpose */
  --accent:     #1f6feb;

  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 72px);

  --serif: "Space Grotesk", "Hanken Grotesk", system-ui, sans-serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

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

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--ink); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 160px); }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }
.dark { background: var(--black); color: var(--on-dark); }
.paper { background: var(--paper); }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-size: clamp(3rem, 9vw, 8rem);
}
.display em { font-style: normal; font-weight: 700; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.025em; line-height: 1.0; }
.h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.3rem, 5.2vw, 4.4rem); line-height: 1.0; letter-spacing: -0.03em; }
.h2 em { font-style: normal; font-weight: 700; }
.h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1.05; letter-spacing: -0.02em; }

.lead {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-60);
  letter-spacing: -0.01em;
  max-width: 38ch;
}
.dark .lead { color: var(--on-dark-60); }
p { text-wrap: pretty; }

/* mono label / eyebrow */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-45);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}
.dark .eyebrow { color: var(--on-dark-60); }
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.no-rule::before { display: none; }
.idx { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-30); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  padding: 1.05em 1.6em;
  border: 1px solid var(--ink);
  background: var(--ink); color: #fff;
  border-radius: 2px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover { background: transparent; color: var(--ink); }
.btn:hover .arr { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.dark .btn { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.dark .btn:hover { background: transparent; color: var(--on-dark); }
.dark .btn--ghost { background: transparent; color: var(--on-dark); }
.dark .btn--ghost:hover { background: var(--on-dark); color: var(--ink); }

/* inline text link with animated underline */
.tlink {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(1); transform-origin: right;
  transition: transform .45s var(--ease);
}
.tlink:hover::after { transform: scaleX(0); transform-origin: left; }
.tlink .arr { transition: transform .4s var(--ease); }
.tlink:hover .arr { transform: translateX(4px); }

/* ============================ NAV ============================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav--solid { background: rgba(255,255,255,0.82); backdrop-filter: saturate(140%) blur(14px); border-bottom-color: var(--line); }
.nav--dark { color: var(--on-dark); }
.nav--dark.nav--solid { background: rgba(12,12,13,0.7); border-bottom-color: var(--on-dark-line); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .mark { width: 30px; height: 30px; object-fit: contain; display: block; }
.nav--dark .brand .mark, .footer .brand .mark, .dark .brand .mark { filter: invert(1); }
.brand .wordmark { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 6px 0; color: inherit; opacity: 0.78;
  transition: opacity .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: currentColor;
  transition: width .35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-cta { margin-left: 6px; }
.nav-cta .btn { padding: 0.7em 1.15em; }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--black); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gut);
  clip-path: inset(0 0 100% 0); transition: clip-path .55s var(--ease); pointer-events: none;
}
.mobile-menu.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(2.4rem, 11vw, 4rem); line-height: 1.15; color: var(--on-dark);
  display: flex; align-items: baseline; gap: 16px; opacity: 0; transform: translateY(18px);
}
.mobile-menu a .n { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--on-dark-60); }
.mobile-menu.open a { animation: mm-in .6s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1){animation-delay:.12s}
.mobile-menu.open a:nth-child(2){animation-delay:.18s}
.mobile-menu.open a:nth-child(3){animation-delay:.24s}
.mobile-menu.open a:nth-child(4){animation-delay:.30s}
@keyframes mm-in { to { opacity: 1; transform: none; } }

/* ============================ FOOTER ============================ */
.footer { background: var(--black); color: var(--on-dark); padding-top: clamp(72px, 9vw, 130px); }
.footer .cta-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-block: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--on-dark-line); margin-top: clamp(56px, 8vw, 110px);
}
.footer-col h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-60); font-weight: 500; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 0.98rem; color: var(--on-dark); opacity: 0.82; transition: opacity .3s; }
.footer-col a:hover { opacity: 1; }
.footer-brand .wordmark { font-family: var(--serif); font-size: 1.3rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-block: 28px; border-top: 1px solid var(--on-dark-line); }
.footer-bottom span, .footer-bottom a { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--on-dark-60); }

/* ============================ reveal anim ============================ */
.anim [data-reveal] { opacity: 1; transform: translateY(24px); transition: transform .85s var(--ease); }
.anim [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-d="1"]{transition-delay:.08s}
[data-reveal-d="2"]{transition-delay:.16s}
[data-reveal-d="3"]{transition-delay:.24s}
[data-reveal-d="4"]{transition-delay:.32s}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* line draw */
.anim .rule-grow { transform-origin: left; transform: scaleX(0); transition: transform 1s var(--ease); }
.anim .rule-grow.in { transform: scaleX(1); }

/* ============================ HERO ============================ */
.hero { position: relative; padding-top: 140px; padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 80% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 100% at 80% 0%, #000 0%, transparent 72%);
  opacity: 0.8;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-head { display: grid; grid-template-columns: 1fr; gap: 38px; }
.hero h1 { font-size: clamp(3.1rem, 9.2vw, 8.6rem); line-height: 0.94; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; font-weight: 700; }
.hero-foot { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: 8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero status chip */
.status { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); }
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(22,163,74,.45)} 70%{box-shadow:0 0 0 7px rgba(22,163,74,0)} 100%{box-shadow:0 0 0 0 rgba(22,163,74,0)} }

/* ticker / marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 18px; }
.dark .marquee { border-color: var(--on-dark-line); }
.marquee-track { display: inline-flex; gap: 56px; white-space: nowrap; will-change: transform; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-45); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: "✺"; color: var(--ink-30); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================ SERVICE LIST ============================ */
.svc-list { border-top: 1px solid var(--line); }
.dark .svc-list { border-color: var(--on-dark-line); }
.svc {
  display: grid; grid-template-columns: 56px 1fr 1.3fr auto; gap: 28px; align-items: start;
  padding-block: clamp(28px, 3.4vw, 46px); border-bottom: 1px solid var(--line);
  transition: padding-left .5s var(--ease), background .5s var(--ease);
}
.dark .svc { border-color: var(--on-dark-line); }
.svc:hover { padding-left: 14px; }
.svc .num { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-30); padding-top: 0.5em; }
.svc h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.svc .svc-desc { color: var(--ink-60); font-size: 1.02rem; max-width: 46ch; }
.dark .svc .svc-desc { color: var(--on-dark-60); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-45); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; }
.dark .tag { color: var(--on-dark-60); border-color: var(--on-dark-line); }
.svc .svc-go { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease); }
.dark .svc .svc-go { border-color: var(--on-dark-line); }
.svc:hover .svc-go { background: var(--ink); color: #fff; transform: rotate(-45deg); }
.dark .svc:hover .svc-go { background: var(--on-dark); color: var(--ink); }

/* ============================ PROCESS ============================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--on-dark-line); border: 1px solid var(--on-dark-line); }
.process-cell { background: var(--black); padding: clamp(26px, 2.6vw, 42px) clamp(22px, 2vw, 34px); min-height: 280px; display: flex; flex-direction: column; transition: background .45s var(--ease); }
.process-cell:hover { background: var(--black-2); }
.process-cell .pn { font-family: var(--mono); font-size: 0.74rem; color: var(--on-dark-60); letter-spacing: 0.12em; }
.process-bottom { margin-top: auto; }
.process-cell h3 { font-size: 1.7rem; color: var(--on-dark); }
.process-cell p { color: var(--on-dark-60); font-size: 0.96rem; margin-top: 14px; }

/* ============================ ABOUT / DANNY ============================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.figure-frame { position: relative; }
.figure-frame .ph { aspect-ratio: 4/5; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kpi .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; }
.kpi .l { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-45); margin-top: 8px; }
.dark .kpi .l { color: var(--on-dark-60); }

/* ---------- placeholder graphic ---------- */
.ph { background: var(--paper); border: 1px solid var(--line); position: relative; overflow: hidden; }
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 16px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-30);
}
.ph--dark { background: #141415; border-color: var(--on-dark-line); }
.ph--dark::after { color: #4a4a4d; }
.ph-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 28px 28px; opacity: .5; }

/* ============================ WORK / PORTFOLIO ============================ */
.work-list { border-top: 1px solid var(--line); }
.work-row {
  display: grid; grid-template-columns: 72px 1fr 1fr; gap: 30px; align-items: center;
  padding-block: clamp(22px, 2.4vw, 34px); border-bottom: 1px solid var(--line);
  position: relative; transition: background .4s var(--ease);
}
.work-row .wn { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-30); }
.work-row h3 { font-size: clamp(1.7rem, 3.4vw, 3rem); transition: transform .5s var(--ease); }
.work-row .wmeta { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.work-row .wcat { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-45); }
.work-row:hover h3 { transform: translateX(12px); }
/* floating hover preview */
.work-preview {
  position: fixed; top: 0; left: 0; width: 320px; height: 220px; pointer-events: none; z-index: 90;
  opacity: 0; transform: translate(-50%, -50%) scale(0.9); transition: opacity .3s var(--ease), transform .3s var(--ease);
  border: 1px solid var(--line); background: var(--paper); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
}
.work-preview.show { opacity: 1; }
.work-preview img { width: 100%; height: 100%; object-fit: cover; }

/* portfolio card grid */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px); }
.work-card { display: block; }
.work-card .thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--paper); border: 1px solid var(--line); }
.work-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-card:hover .thumb img { transform: scale(1.05); }
.work-card .thumb .badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(12,12,13,.78); color: #fff; padding: 5px 9px; border-radius: 2px; backdrop-filter: blur(4px); }
.work-card .meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 16px; }
.work-card .meta h3 { font-size: 1.4rem; }
.work-card .meta .wcat { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-45); }
.work-card .arr-c { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: background .4s, color .4s, transform .4s var(--ease); flex: none; }
.work-card:hover .arr-c { background: var(--ink); color: #fff; transform: rotate(-45deg); }

/* ============================ PROJECT DETAIL ============================ */
.proj-hero { padding-top: 130px; }
.proj-hero .pmeta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.proj-logo { width: 92px; height: 92px; border-radius: 14px; display: grid; place-items: center; background: #fff; border: 1px solid var(--on-dark-line); overflow: hidden; }

/* browser frame with scrollable screenshot */
.browser { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 40px 80px -40px rgba(0,0,0,.4); }
.browser-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: var(--paper); border-bottom: 1px solid var(--line); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: block; }
.browser-url { flex: 1; font-family: var(--mono); font-size: 0.72rem; color: var(--ink-45); background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; display: flex; align-items: center; gap: 8px; }
.browser-scroll { height: clamp(380px, 64vh, 640px); overflow-y: auto; scrollbar-width: thin; scroll-behavior: smooth; background: var(--paper); }
.browser-scroll::-webkit-scrollbar { width: 10px; }
.browser-scroll::-webkit-scrollbar-thumb { background: var(--ink-30); border-radius: 100px; border: 3px solid var(--paper); }
.browser-scroll img { width: 100%; display: block; }
.scroll-hint { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-45); background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; display: flex; gap: 8px; align-items: center; pointer-events: none; transition: opacity .4s; }

/* private / archived preview panel */
.no-preview { border: 1px solid var(--line); border-radius: 10px; background: #fff; min-height: clamp(320px, 46vh, 540px); display: grid; place-content: center; justify-items: center; text-align: center; gap: 18px; padding: 56px 24px; position: relative; overflow: hidden; }
.no-preview::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px); background-size: 34px 34px; -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 68%); mask-image: radial-gradient(circle at 50% 45%, #000, transparent 68%); opacity: .7; }
.no-preview > * { position: relative; z-index: 1; }
.np-icon { width: 56px; height: 56px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: var(--bg); }
.np-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; }
.np-text { color: var(--ink-60); max-width: 40ch; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.info-item { border-top: 1px solid var(--line); padding-top: 16px; }
.info-item dt { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 8px; }
.info-item dd { font-size: 1.05rem; }

/* ============================ CONTACT ============================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.field { position: relative; margin-bottom: 26px; }
.field label { display: block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 1.05rem; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line); padding: 10px 0; transition: border-color .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-30); }
.contact-card { background: var(--black); color: var(--on-dark); border-radius: 14px; padding: clamp(28px, 4vw, 48px); }
.contact-line { display: flex; gap: 18px; align-items: flex-start; padding-block: 24px; border-bottom: 1px solid var(--on-dark-line); }
.contact-line:last-child { border-bottom: none; }
.contact-line .ci { width: 42px; height: 42px; border: 1px solid var(--on-dark-line); border-radius: 50%; display: grid; place-items: center; flex: none; }
.contact-line .cl { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-60); margin-bottom: 6px; }
.contact-line .cv { font-size: 1.15rem; }
.form-ok { padding: 14px 0; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em; color: #16a34a; }

/* page header (sub pages) */
.page-head { padding-top: 150px; padding-bottom: clamp(40px, 6vw, 80px); }
.page-head h1 { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.95; }

/* generic icon stroke */
.ico { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.ico-lg { width: 30px; height: 30px; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 40px 1fr; }
  .svc .svc-desc, .svc .svc-go { grid-column: 2; }
  .svc .svc-go { display: none; }
  .work-row { grid-template-columns: 40px 1fr; }
  .work-row .wmeta { grid-column: 2; flex-direction: row; gap: 14px; }
  .proj-hero .split { gap: 28px; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .kpi-row { grid-template-columns: 1fr; gap: 20px; }
}
