/* ============================================================
   FUTURE CULTURE CONSULTING — shared stylesheet
   Black and white only. Type does most of the work.
   Editorial, Swiss, monospace accents. Generous negative space.
   ============================================================ */

:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --grey-1: #f4f4f4;
  --grey-2: #d9d9d9;
  --grey-3: #8a8a8a;
  --grey-4: #555555;
  --accent: #f5b301;       /* gold signal, used sparingly for reactive states */
  --on-accent: #0a0a0a;    /* text color that sits on an accent fill */
  --accent-ink: #8a6600;   /* deep gold, for accent text on white */
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace;
  --max: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--on-accent); }

img, iframe, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
p a, .prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
p a:hover, .prose a:hover { background: var(--accent); color: var(--on-accent); }

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

/* ---- monospace label accent ---- */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-4);
  display: block;
  margin-bottom: 1.25rem;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 3px 8px;
  display: inline-block;
}

.tag--soft { border-color: var(--grey-2); color: var(--grey-4); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav { display: flex; gap: clamp(16px, 3vw, 40px); }

.site-nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--accent); color: var(--accent-ink); }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    flex-direction: column;
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--grey-2);
  }
}

/* ============ HERO ============ */
.hero {
  padding: clamp(90px, 16vh, 190px) 0 clamp(70px, 12vh, 150px);
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 18ch;
}

.hero h1 .thin { font-weight: 400; color: var(--grey-4); }

/* page hero (interior pages) */
.page-hero { padding: clamp(60px, 10vh, 120px) 0 clamp(40px, 6vh, 80px); }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.page-hero .lede {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  max-width: 58ch;
  color: var(--grey-4);
}

/* ============ SECTIONS ============ */
.section { padding: clamp(56px, 9vh, 110px) 0; border-top: 1px solid var(--ink); }
.section--flush { border-top: 0; }

/* ============ CAPABILITIES STRIP (home) ============ */
.cap-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.cap-strip a {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 22px 16px 44px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  position: relative;
  transition: background 0.15s, color 0.15s;
}

.cap-strip a::after {
  content: "↓";
  font-family: var(--mono);
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 12px;
  color: var(--grey-3);
}

.cap-strip a:hover { background: var(--accent); color: var(--on-accent); }
.cap-strip a:hover::after { color: var(--on-accent); }

@media (max-width: 980px) { .cap-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .cap-strip { grid-template-columns: repeat(2, 1fr); } }

/* proof band / ticker removed per direction */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============ TILE GRIDS ============ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.tile {
  background: var(--paper);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: background 0.15s, color 0.15s;
}

.tile { position: relative; }
.tile > * { position: relative; z-index: 1; }
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(245, 179, 1, 0.22), transparent 68%);
  transition: opacity 0.35s ease;
}
a.tile:hover { box-shadow: inset 0 0 0 2px var(--accent); z-index: 1; }
a.tile:hover::before { opacity: 1; }
a.tile:hover .tile-meta { color: var(--accent-ink); }
a.tile:hover .thumb { border-color: var(--accent); }
a.tile:hover .thumb img { filter: none; }

.tile-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-4);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.tile h3 { font-size: 1.35rem; line-height: 1.15; letter-spacing: -0.01em; }
.tile-line { font-size: 0.95rem; color: var(--grey-4); max-width: 44ch; }

.thumb {
  margin-top: auto;
  aspect-ratio: 16 / 9;
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
  overflow: hidden;
}

.thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

/* logo teaser tiles */
.tile--teaser { justify-content: center; align-items: flex-start; }
.teaser-mark {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--grey-2);
}

/* ============ SERVICES ============ */
.svc { padding: 44px 0; border-top: 1px solid var(--grey-2); }
.svc:first-of-type { border-top: 0; }

.svc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
}

@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }

.svc h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; line-height: 1.1; }
.svc .svc-line { margin-top: 0.8rem; font-size: 1.05rem; max-width: 44ch; }

.svc-proof { font-size: 0.92rem; color: var(--grey-4); line-height: 1.7; }
.svc-proof .label { margin-bottom: 0.5rem; }

.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey-3);
  display: block;
  margin-bottom: 0.6rem;
}

/* how we work */
.how-list { counter-reset: how; list-style: none; margin-top: 2.5rem; }

.how-list li {
  counter-increment: how;
  border-top: 1px solid var(--grey-2);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.how-list li::before {
  content: "0" counter(how);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-ink);
  padding-top: 3px;
}

.how-list strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.how-list p { color: var(--grey-4); max-width: 60ch; }

.pull {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 30ch;
}

/* ============ CAPABILITIES LIST (services) ============ */
.cap-list { list-style: none; }

.cap-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 30px 18px;
  border-top: 1px solid var(--grey-2);
  position: relative;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.cap-list li:last-child { border-bottom: 1px solid var(--grey-2); }

.cap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}

.cap-list li:hover { background: var(--grey-1); padding-left: 30px; }
.cap-list li:hover::before { transform: scaleY(1); }
.cap-list li:hover .cap-n { color: var(--accent-ink); }
.cap-list li:hover h3 { color: var(--accent-ink); }

.cap-n {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--grey-3);
  padding-top: 8px;
  transition: color 0.2s ease;
}

.cap-list h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.2s ease;
}

.cap-list p { color: var(--grey-4); margin-top: 8px; max-width: 62ch; }

@media (max-width: 560px) {
  .cap-list li { grid-template-columns: 1fr; gap: 6px; }
  .cap-n { padding-top: 0; }
}

/* ============ CASE STUDY ============ */
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-top: 1.4rem;
}

.prose { max-width: 66ch; font-size: 1.08rem; line-height: 1.65; }
.prose p + p { margin-top: 1.2em; }

.media-block { margin: 0; }

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--grey-1);
  border: 1px solid var(--ink);
  position: relative;
}

.video-frame iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }

.media-pending {
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--grey-3);
  background: var(--grey-1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.media-pending span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
  max-width: 40ch;
}

.media-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-top: 10px;
}

.session { margin-top: 3.5rem; }
.session h3 { font-size: 1.5rem; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.session .session-line { color: var(--grey-4); margin-bottom: 1.2rem; max-width: 60ch; }

.credits { font-size: 0.95rem; color: var(--grey-4); line-height: 1.8; max-width: 60ch; }

.next-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

.next-link:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

/* ============ WARTIME ============ */
.wartime-magazine-embed {
  border: 1px solid var(--ink);
  background: var(--grey-1);
  /* Responsive flipbook container. Once the embed code lands, the iframe
     inside scales to this box. No fixed pixel heights. */
}

.wartime-magazine-embed .embed-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* magazine spread ratio, adjust when embed lands */
}

.wartime-magazine-embed .embed-ratio > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .wartime-magazine-embed .embed-ratio { aspect-ratio: 3 / 4; } /* single page on mobile */
}

/* masonry via CSS columns */
.masonry { columns: 3 260px; column-gap: 14px; }
.masonry .m-item { break-inside: avoid; margin-bottom: 14px; cursor: zoom-in; border: 1px solid var(--grey-2); transition: border-color 0.2s ease; }
.masonry .m-item:hover { border-color: var(--accent); }

/* color masonry (WARTIME archive): show the magazine work at full impact.
   Higher specificity than the base grayscale rule so it wins regardless of order. */
.masonry.masonry--color .m-item img { filter: none; }

/* video tiles inside a masonry */
.m-video { position: relative; line-height: 0; overflow: hidden; cursor: default; }
.m-video video { width: 100%; height: auto; display: block; }
.m-vtag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 10, 10, 0.65);
  padding: 3px 7px;
}
.masonry .m-item img { width: 100%; filter: grayscale(1); }

.m-placeholder {
  background: var(--grey-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 4vmin;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; }

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

/* ============ ABOUT ============ */
.mission-block {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.015em;
  max-width: 26ch;
}

.filter-list { list-style: none; margin-top: 1.6rem; }
.filter-list li {
  border-top: 1px solid var(--grey-2);
  padding: 14px 0;
  font-size: 1.05rem;
  display: grid;
  grid-template-columns: 44px 1fr;
}
.filter-list li::before { content: "✕"; font-family: var(--mono); color: var(--grey-3); }

/* ============ CONTACT / FORMS ============ */
.contact-form { max-width: 620px; }

.field { margin-bottom: 26px; }

.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.field input, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--sans);
  font-size: 1.05rem;
  padding: 8px 0 10px;
  border-radius: 0;
  color: var(--ink);
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-width: 2px;
  border-bottom-color: var(--accent);
}

.field textarea { min-height: 140px; resize: vertical; }

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 34px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.form-confirm {
  display: none;
  border: 1px solid var(--ink);
  padding: 28px;
  font-size: 1.1rem;
  max-width: 620px;
}

.form-confirm.show { display: block; }

/* ============ CTA BAND ============ */
.cta-band { text-align: left; }
.cta-band .pull { margin-bottom: 2rem; }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--ink);
  padding: 40px 0 48px;
  margin-top: clamp(56px, 10vh, 120px);
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer p { font-size: 0.92rem; color: var(--grey-4); }

.site-footer .foot-credit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-top: 14px;
}

/* ============ FADE-IN ON SCROLL (subtle, slow) ============ */
/* Gated behind the .js class so content never hides when JS is off */
.js .fade {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .fade.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
}

/* subtle tilt on featured thumbs only */
.featured .thumb { transition: transform 0.6s ease; }
.featured a.tile:hover .thumb { transform: rotate(-0.4deg) scale(1.01); }

/* utility */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 72px);
}

/* ---- wired logo + media placeholders ---- */
.wordmark img { height: 30px; width: auto; display: block; }
@media (max-width: 760px) { .wordmark img { height: 26px; } }

/* homepage hero: lead with the logo, tagline underneath */
.hero-logo {
  display: block;
  width: clamp(260px, 46vw, 540px);
  height: auto;
  margin: 0 0 clamp(22px, 3.4vh, 40px);
}
.hero h1.hero-tag {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
  /* about half the width of the logo above it */
  max-width: clamp(150px, 23vw, 275px);
}
.hero-tag .hl {
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.1em 0.3em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.media-block img { width: 100%; border: 1px solid var(--ink); display: block; }
.video-el { width: 100%; height: auto; border: 1px solid var(--ink); background: var(--ink); display: block; }

/* ============ SERVICES: floaty physics pile (names + icon tiles) ============ */
.svc-pile {
  position: relative;
  width: 100%;
  height: clamp(500px, 68vh, 740px);
  margin-top: clamp(30px, 4vw, 56px);
  overflow: hidden;
  touch-action: none;
}
/* the soft frame the blocks spill out of */
.svc-frame {
  position: absolute;
  top: clamp(80px, 12vw, 140px);
  left: clamp(18px, 5vw, 56px);
  right: clamp(18px, 5vw, 56px);
  bottom: 0;
  background: var(--grey-1);
  border-radius: 18px;
  z-index: 0;
  pointer-events: none;
}
.svc-chip,
.svc-tile {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(10,10,10,0.12), 0 3px 10px rgba(10,10,10,0.08);
  transition: box-shadow 0.22s ease;
}
.svc-chip:active,
.svc-tile:active { cursor: grabbing; }
.svc-chip.grabbed,
.svc-tile.grabbed { z-index: 6; box-shadow: 0 34px 74px rgba(10,10,10,0.26), 0 10px 22px rgba(10,10,10,0.15); }
.svc-chip.ink,   .svc-tile.ink   { background: var(--ink);    color: var(--paper); }
.svc-chip.paper, .svc-tile.paper { background: var(--paper);  color: var(--ink); }
.svc-chip.gold,  .svc-tile.gold  { background: var(--accent); color: var(--on-accent); }

.svc-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: min(88vw, 680px);
  padding: clamp(14px, 1.8vw, 26px) clamp(18px, 2.6vw, 38px);
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
}
.svc-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(88px, 14vw, 150px);
  height: clamp(88px, 14vw, 150px);
  border-radius: 18px;
}
.svc-tile svg { width: 50%; height: 50%; }

.svc-list { list-style: none; margin-top: clamp(20px, 3vw, 34px); }
.svc-list li {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
}
.svc-cta { margin-top: clamp(24px, 4vw, 42px); }
.svc-play {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 13px 24px;
  cursor: pointer;
  transition: filter 0.15s, transform 0.1s;
}
.svc-play:hover { filter: brightness(1.06); }
.svc-play:active { transform: translateY(1px); }
.svc-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.svc-reset, .svc-back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 1px solid var(--ink);
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.svc-reset:hover, .svc-back:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
