:root {
  /* Warm, founder-friendly take on black-and-white:
     paper, charcoal, graphite, and a yolk/spark accent. */
  --ink: #1f1f1d;
  --ink-2: #3f3d38;
  --muted: #777168;
  --line: #e7dfd2;
  --line-strong: #2a2925;
  --paper: #fffdf8;
  --paper-2: #f6f1e8;
  --paper-3: #fbf7ee;
  --dark: #23231f;
  --dark-2: #2b2a25;
  --accent: #e7a83b;
  --accent-strong: #a76618;
  --accent-soft: #fff0c9;
  --shadow: 0 18px 48px rgba(38, 34, 27, 0.10);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hand: 'Caveat', 'Comic Sans MS', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 4%, rgba(231, 168, 59, 0.14), transparent 26rem),
    radial-gradient(circle at 6% 28%, rgba(231, 168, 59, 0.08), transparent 22rem),
    var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- Shared type ---------- */
/* handwritten "margin note" that leads into the polished headline */
.eyebrow {
  font-family: var(--hand);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-strong);
  margin: 0 0 16px;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.035em; margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--ink); color: #fff; box-shadow: 0 12px 26px rgba(31,31,29,0.14); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); box-shadow: 0 14px 32px rgba(167,102,24,0.20); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--ink); }
.btn-invert { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-invert:hover { background: #fff; border-color: #fff; color: var(--ink); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.03em; }
.logo img { width: 154px; height: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a.link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: color 0.2s;
}
.nav-links a.link:hover, .nav-links a.link.current { color: var(--ink); }
.nav-cta { font-size: 0.85rem; padding: 11px 22px; }
.menu-btn { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 4px; }

/* ---------- Hero ---------- */
.hero {
  padding: 104px 0 96px;
  background:
    radial-gradient(circle at 78% 18%, rgba(231, 168, 59, 0.18), transparent 25rem),
    linear-gradient(180deg, var(--paper) 0%, #fffaf0 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.hero-figure { margin: 0; }
.hero .eyebrow { margin-bottom: 30px; }
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  line-height: 0.98;
}
.hero h1 .thin {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 1.15em;
  letter-spacing: 0;
  color: var(--ink-2);
}
.hero .lede {
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  max-width: 46ch;
  margin: 36px 0 26px;
}
.hero-kicker {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}
.hero-kicker .hatch {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 0.8;
  color: var(--ink);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 1px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 64px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-stats .n { font-size: 2.1rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.hero-stats .l { font-size: 0.82rem; color: var(--muted); margin-top: 10px; letter-spacing: 0.02em; }

[data-parallax] { will-change: transform; }

/* ---------- Sub-page header ---------- */
.page-head {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at 82% 10%, rgba(231, 168, 59, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--paper) 0%, #fffaf0 100%);
}
.page-head h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.0; max-width: 20ch; }
.page-head .lede { color: var(--ink-2); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 56ch; margin: 24px 0 0; }

/* ---------- Napkin sketch divider ---------- */
.sketch-divider {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.sketch-divider svg { display: block; width: 100%; height: auto; }

/* ---------- Section scaffolding ---------- */
section { padding: 120px 0; }
.section-head { max-width: 680px; margin-bottom: 72px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.05; }
.section-head p:not(.eyebrow) { color: var(--ink-2); font-size: 1.12rem; margin: 22px 0 0; max-width: 52ch; }
.section-foot { margin-top: 48px; }

/* ---------- Role / bridge ---------- */
.bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.bridge-step {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.bridge-step.is-us {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  box-shadow: var(--shadow);
}
.bridge-n {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.is-us .bridge-n { color: rgba(255, 255, 255, 0.55); }
.bridge-t { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 12px 0 12px; }
.bridge-d { font-size: 0.96rem; color: var(--ink-2); margin: 0; }
.is-us .bridge-d { color: rgba(255, 255, 255, 0.75); }
.bridge-arrow {
  display: grid; place-items: center;
  padding: 0 18px;
  font-size: 1.7rem; color: var(--muted);
}

/* ---------- Differentiator / comparison ---------- */
.different-top {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 60px;
}
.different-top .section-head { margin-bottom: 0; }
.side-figure { margin: 0; }
.compare { border-top: 1px solid var(--line-strong); }
.crow {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.crow > div { padding: 22px 26px; }
.clabel { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.them { color: var(--muted); font-size: 1rem; }
.us { background: var(--paper-2); color: var(--ink); font-size: 1rem; font-weight: 700; }
.chead .clabel { padding-top: 0; }
.chead .them {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2);
}
.chead .us {
  background: var(--dark); color: #fff;
  font-size: 0.92rem; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 9px;
}
.chead .us::before {
  content: ""; width: 18px; height: 18px; flex: none;
  background: #fff;
  -webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Story ---------- */
.story { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.story-logo {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(231, 168, 59, 0.18), transparent 42%),
    var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 64px;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}
.story-logo img { width: 100%; max-width: 420px; height: auto; }
.story h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 28px; }
.story p { color: var(--ink-2); font-size: 1.12rem; margin: 0 0 20px; max-width: 42ch; }
.story .story-tag {
  font-family: var(--hand);
  font-weight: 700; color: var(--accent-strong);
  letter-spacing: 0; font-size: 1.7rem; line-height: 1;
  margin-top: 30px;
}

/* ---------- Inverted (dark) section ---------- */
.dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(231, 168, 59, 0.14), transparent 24rem),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}
.dark > .wrap { position: relative; z-index: 1; }
.dark .eyebrow { color: rgba(255, 255, 255, 0.5); }
.dark .section-head p { color: rgba(255, 255, 255, 0.72); }
.dark .process-grid { border-top-color: rgba(255, 255, 255, 0.55); }
.dark .phase { border-right-color: rgba(255, 255, 255, 0.16); }
.dark .phase .num { color: var(--accent); }
.dark .phase h3 { color: #fff; }
.dark .phase > p { color: rgba(255, 255, 255, 0.72); }
.dark .phase li { color: #fff; border-top-color: rgba(255, 255, 255, 0.16); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }
.phase { padding: 44px 36px 44px 0; border-right: 1px solid var(--line); }
.phase:last-child { border-right: 0; padding-right: 0; padding-left: 36px; }
.phase:not(:first-child) { padding-left: 36px; }
.phase .num { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; color: var(--muted); }
.phase h3 { font-size: 1.5rem; margin: 16px 0 14px; }
.phase > p { color: var(--ink-2); font-size: 1rem; margin: 0 0 26px; }
.phase ul { list-style: none; padding: 0; margin: 0; }
.phase li { font-size: 0.92rem; color: var(--ink); padding: 12px 0; border-top: 1px solid var(--line); }

/* ---------- Services (offerings) ---------- */
.svc-cats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.svc-cat { padding: 34px 26px 38px 0; border-right: 1px solid var(--line); }
.svc-cat:last-child { border-right: 0; padding-right: 0; }
.svc-cat:not(:first-child) { padding-left: 26px; }
.cat-h { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.cat-list { list-style: none; padding: 0; margin: 16px 0 0; }
.cat-list li { font-size: 0.96rem; color: var(--ink-2); padding: 11px 0; border-top: 1px solid var(--line); }

/* ---------- Capabilities ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); }
.cap { padding: 44px 36px 44px 0; border-right: 1px solid var(--line); }
.cap:last-child { border-right: 0; padding-right: 0; padding-left: 36px; }
.cap:not(:first-child) { padding-left: 36px; }
.cap .ic svg { width: 32px; height: 32px; color: var(--ink); }
.cap h3 { font-size: 1.4rem; margin: 22px 0 12px; }
.cap p { color: var(--ink-2); font-size: 1rem; margin: 0; max-width: 34ch; }

.makerspace {
  margin-top: 36px;
  background:
    linear-gradient(135deg, rgba(255, 240, 201, 0.52), transparent 52%),
    var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.makerspace h3 { font-size: 1.6rem; margin: 0 0 12px; }
.makerspace p { color: var(--ink-2); font-size: 1.05rem; margin: 0; max-width: 40ch; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; max-width: 380px; justify-content: flex-end; }
.tag {
  border: 1px solid rgba(31, 31, 29, 0.22);
  background: rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ---------- Scope ---------- */
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); }
.scope-col { padding: 36px 52px 40px 0; }
.scope-col + .scope-col { padding: 36px 0 40px 52px; border-left: 1px solid var(--line); }
.scope-h { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0; }
.scope-list { list-style: none; padding: 0; margin: 16px 0 0; }
.scope-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
  line-height: 1.4;
}
.scope-list.yes li::before {
  content: "✓"; position: absolute; left: 0; top: 14px;
  font-weight: 700; color: var(--accent-strong);
}
.scope-list.no li { color: var(--ink-2); }
.scope-list.no li::before {
  content: "→"; position: absolute; left: 0; top: 14px; color: var(--muted);
}
.scope-note { margin: 24px 0 0; color: var(--muted); font-size: 0.95rem; max-width: 40ch; }

/* ---------- Work / projects ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
figure.project { margin: 0; }
.project-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(255, 240, 201, 0.22), transparent 48%),
    var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.project-img picture { display: block; width: 100%; height: 100%; }
.project-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* placeholder shown until a real <img> is dropped in */
.project-ph { display: grid; place-items: center; gap: 12px; color: var(--muted); text-align: center; padding: 24px; }
.project-ph svg { width: 34px; height: 34px; stroke: var(--muted); }
.project-ph span { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }
figcaption { padding-top: 22px; }
figcaption .project-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-strong); }
figcaption h3 { font-size: 1.2rem; margin: 12px 0 8px; }
figcaption p { color: var(--ink-2); font-size: 0.95rem; margin: 0; max-width: 38ch; }

/* project testimonial quote */
.project-quote { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.project-quote p { color: var(--ink); font-size: 0.95rem; font-style: italic; margin: 0 0 8px; max-width: 38ch; }
.project-quote cite { font-style: normal; color: var(--muted); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; }

/* ---------- Why ---------- */
.why {
  background:
    radial-gradient(circle at 12% 16%, rgba(231, 168, 59, 0.13), transparent 22rem),
    var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.value { padding: 40px 48px 40px 0; border-top: 1px solid var(--line); }
.value:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--line); }
.value .vn { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; color: var(--accent-strong); }
.value h3 { font-size: 1.3rem; margin: 14px 0 12px; }
.value p { color: var(--ink-2); font-size: 1rem; margin: 0; max-width: 40ch; }

/* ---------- About / founder ---------- */
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: center; }
.about-photo { aspect-ratio: 1; }
.about-cred { margin-top: 26px; max-width: none; justify-content: flex-start; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  background: rgba(255,253,248,0.72);
  box-shadow: var(--shadow);
}
.price { padding: 38px 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.price:last-child { border-right: 0; }
.price.feature {
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 168, 59, 0.16), transparent 18rem),
    var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.pk-name { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-strong); }
.feature .pk-name { color: rgba(255, 255, 255, 0.55); }
.pk-amt { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.03em; margin: 16px 0 0; line-height: 1; }
.pk-amt small { font-size: 0.9rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.feature .pk-amt small { color: rgba(255, 255, 255, 0.6); }
.pk-d { font-size: 0.96rem; color: var(--ink-2); margin: 18px 0 26px; }
.feature .pk-d { color: rgba(255, 255, 255, 0.75); }
.price .pk-cta { margin-top: auto; align-self: flex-start; }
.price-note { margin: 26px 0 0; color: var(--muted); font-size: 0.95rem; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 24px 44px 24px 0; position: relative;
  font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 18px;
  font-size: 1.6rem; font-weight: 400; color: var(--accent-strong);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 44px 26px 0; color: var(--ink-2); font-size: 1.02rem; max-width: 68ch; margin: 0; }

/* ---------- CTA (inverted dark band) ---------- */
.cta {
  background:
    radial-gradient(circle at 50% 18%, rgba(231, 168, 59, 0.19), transparent 24rem),
    linear-gradient(135deg, var(--dark) 0%, #1d1d1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-bulb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, 92%);
  height: auto;
  color: #fff;
  opacity: 0.06;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; padding: 40px 0; }
.cta .eyebrow { color: rgba(255,255,255,0.55); }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.02; }
.cta p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 44ch; margin: 26px auto 40px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta .email { color: rgba(255,255,255,0.7); font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 3px; transition: color 0.2s, border-color 0.2s; }
.cta .email:hover { color: #fff; border-color: #fff; }

/* ---------- Footer ---------- */
footer { padding: 72px 0 48px; }
.foot-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand .logo { font-size: 1.1rem; }
.foot-brand .tag { font-family: var(--hand); font-weight: 700; font-size: 1.45rem; line-height: 1; letter-spacing: 0; margin: 16px 0 10px; }
.foot-brand p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; margin: 0; }
.foot-brand .foot-loc { margin-top: 14px; }
.foot-links { display: flex; gap: 72px; flex-wrap: wrap; }
.foot-col h5 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; font-weight: 700; }
.foot-col a { display: block; font-size: 0.94rem; color: var(--ink-2); margin-bottom: 12px; transition: color 0.2s; }
.foot-col a:hover { color: var(--ink); }
.copy { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; letter-spacing: 0.02em; }

/* ---------- Warm NestKick accent refinements ---------- */
.hero-figure .project-img,
.side-figure .project-img,
.about-photo {
  outline: 1px solid rgba(255, 255, 255, 0.55);
  outline-offset: -8px;
}

.bridge-step,
.price,
.svc-cat,
.cap,
.scope-col,
.value {
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.bridge-step:not(.is-us):hover,
.price:not(.feature):hover {
  background: rgba(255, 240, 201, 0.22);
  border-color: rgba(231, 168, 59, 0.45);
}

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

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--paper); padding: 28px 32px; border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-figure { max-width: 440px; }
  .bridge { grid-template-columns: 1fr; }
  .bridge-arrow { transform: rotate(90deg); padding: 14px 0; }
  .different-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 44px; }
  .side-figure { max-width: 440px; }
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-logo { padding: 48px; max-width: 420px; }
  .process-grid { grid-template-columns: 1fr; border-top: 0; }
  .phase, .phase:last-child, .phase:not(:first-child) { border-right: 0; padding: 36px 0; border-top: 1px solid var(--line-strong); }
  .dark .phase { border-top-color: rgba(255, 255, 255, 0.55); }
  .svc-cats { grid-template-columns: 1fr 1fr; border-top: 0; }
  .svc-cat, .svc-cat:not(:first-child) { border-right: 0; padding: 28px 22px; border-top: 1px solid var(--line); }
  .cap-grid { grid-template-columns: 1fr; border-top: 0; }
  .cap, .cap:last-child, .cap:not(:first-child) { border-right: 0; padding: 34px 0; border-top: 1px solid var(--line-strong); }
  .makerspace { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 340px; }
  .price-grid { grid-template-columns: 1fr; }
  .price { border-right: 0; border-bottom: 1px solid var(--line); }
  .price:last-child { border-bottom: 0; }
  .tags { justify-content: flex-start; max-width: none; }
  .scope-grid { grid-template-columns: 1fr; border-top: 0; }
  .scope-col { padding: 30px 0; border-top: 1px solid var(--line-strong); }
  .scope-col + .scope-col { padding: 30px 0; border-left: 0; }
  .work-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .value, .value:nth-child(even) { padding: 34px 0; border-left: 0; }
}
@media (max-width: 700px) {
  .crow { grid-template-columns: 1fr 1fr; }
  .crow > div { padding: 18px 18px; }
  .clabel { grid-column: 1 / -1; padding: 16px 18px 2px; }
  .chead .clabel { display: none; }
}
@media (max-width: 560px) {
  .logo img { width: 132px; }
  .wrap { padding: 0 22px; }
  section { padding: 84px 0; }
  .hero { padding: 80px 0 72px; }
  .page-head { padding: 56px 0 40px; }
  .hero-stats { grid-template-columns: 1fr; gap: 28px; }
  .svc-cats { grid-template-columns: 1fr; }
  .svc-cat, .svc-cat:not(:first-child) { padding: 24px 0; }
  .hero-actions { gap: 18px; }
}
