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

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --yellow: #FFE100;
  --warm: #F7F6F2;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-400: #999;
  --grey-600: #555;
  --grey-800: #222;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #1a1a1a;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-left: 10px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--white); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.9; }

/* ── HERO ── */
.hero {
  background: var(--black);
  padding: 96px 48px 88px;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.55;
  mask-image: linear-gradient(to right, transparent 0%, black 55%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 55%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 40%, transparent 70%);
}
.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.hero-h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 600px;
}
.hero-term {
  display: block;
}
.hero-line {
  display: block;
}
.hero-op {
  font-style: normal;
  color: var(--yellow);
  margin-right: 4px;
}
.hero-result {
  font-style: normal;
  color: var(--yellow);
}
.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}
.hero-cta:hover { opacity: 0.9; }

/* ── CLIENT STRIP ── */
.client-strip {
  background: var(--yellow);
  padding: 14px 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cs-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}
.cs-divider {
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.cs-names {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.cs-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.cs-name:hover { color: var(--black); }

/* ── WHAT WE DO ── */
.what-we-do {
  background: var(--white);
  padding: 72px 80px;
  border-bottom: 1px solid var(--grey-200);
}
.wwd-h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 28px;
}
.wwd-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.wwd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--grey-200);
}
.wwd-item:nth-last-child(-n+3) {
  border-bottom: none;
}
.wwd-emoji {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
}
.wwd-label {
  font-size: 15px;
  color: var(--black);
  line-height: 1.4;
}

/* ── STAT ROW ── */
.stats {
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-inner {
  display: contents;
}
.stat {
  padding: 0 64px 0 0;
  border-right: 1px solid #2a2a2a;
  margin-right: 64px;
}
.stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 72px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 220px;
  margin-bottom: 12px;
}
.stat-source {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── WHY MANUFACTURING ── */
.why-mfg {
  padding: 80px;
  border-bottom: 1px solid var(--grey-200);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.why-mfg-left {
  position: sticky;
  top: 80px;
}
.why-mfg-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 28px;
}
.why-mfg-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-mfg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-mfg-points {
  display: flex;
  flex-direction: column;
}
.why-mfg-point {
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-200);
}
.why-mfg-point:first-child { padding-top: 0; }
.why-mfg-point:last-child { border-bottom: none; padding-bottom: 0; }

/* ── PROBLEM CARDS ── */
.problems {
  background: var(--warm);
  padding: 88px 48px;
  border-bottom: 1px solid var(--grey-200);
}
.problems-h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 48px;
  max-width: 640px;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
}
.problem-card::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 20px;
}
.problem-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--black);
  font-style: italic;
}

/* ── CLIENT QUOTE ── */
.client-quote {
  padding: 80px;
  border-bottom: 1px solid var(--grey-200);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 80px;
  align-items: center;
}
.cq-text {
  font-size: 22px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--black);
}
.cq-text::before {
  content: '\201C';
  font-size: 80px;
  line-height: 0.6;
  color: var(--yellow);
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.cq-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cq-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
}
.cq-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}
.cq-attr {
  font-size: 12px;
  color: var(--grey-400);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.cq-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-top: 4px;
  display: inline-block;
  transition: opacity 0.15s;
}
.cq-link:hover { opacity: 0.6; }

/* ── OUR WORK (CASE STUDIES) ── */
.work-section {
  padding: 88px 80px;
  border-bottom: 1px solid var(--grey-200);
}
.work-h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 32px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card {
  background: var(--warm);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.work-card--placeholder { opacity: 0.4; }
.work-card-sector {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}
.work-card-client {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.work-card-result {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.work-card-desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.work-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}
.work-card-link:hover { opacity: 0.6; }
.work-card-coming {
  font-size: 11px;
  color: var(--grey-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── ACHIEVEMENTS ── */
.achievements {
  background: var(--white);
  padding: 72px 80px;
  border-bottom: 1px solid var(--grey-200);
}
.ach-h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 28px;
}
.ach-list {
  max-width: 720px;
}
.ach-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-200);
}
.ach-item:last-child { border-bottom: none; }
.ach-emoji {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
}
.ach-text {
  font-size: 15px;
  color: var(--black);
  line-height: 1.4;
  flex: 1;
}
.ach-client {
  color: var(--grey-600);
}
.ach-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s;
}
.ach-link:hover { color: var(--black); }

/* ── FOUNDER QUOTE ── */
.founder-quote {
  padding: 80px 48px;
  border-bottom: 1px solid var(--grey-200);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.founder-q-text {
  font-size: 22px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--black);
  max-width: 680px;
}
.founder-q-text::before {
  content: '\201C';
  font-size: 80px;
  line-height: 0.6;
  color: var(--yellow);
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.founder-attr {
  font-size: 12px;
  color: var(--grey-400);
  margin-top: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--grey-200);
  flex-shrink: 0;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(100%); }

/* ── FRAMEWORK ── */
.framework {
  padding: 88px 48px;
  border-bottom: 1px solid var(--grey-200);
}
.framework-h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 56px;
  max-width: 560px;
}
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
}
.fw-card {
  background: var(--white);
  padding: 40px 36px;
}
.fw-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-400);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.fw-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.fw-title span { color: var(--grey-400); display: block; font-size: 12px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.fw-body {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.75;
}

/* ── WHO WE WORK WITH ── */
.ideal-client {
  background: var(--black);
  padding: 88px 80px;
  border-bottom: 1px solid #222;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.ic-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ic-h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.ic-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 56px;
  line-height: 1.6;
}
.ic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ic-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.ic-check {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
}
.ic-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 88px 48px;
  border-bottom: 1px solid var(--grey-200);
}
.test-h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 56px;
}
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.test-card {
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 36px 32px;
}
.test-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  font-style: italic;
  margin-bottom: 28px;
}
.test-attr-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.test-attr-role {
  font-size: 12px;
  color: var(--grey-400);
  margin-top: 2px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--yellow);
  padding: 88px 80px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
}
.cta-band-inner {
  max-width: 480px;
}
.cta-band-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.cta-band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.cta-band-h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-band-sub {
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cta-band-details {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}
.cta-band-detail {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.04em;
}
.cta-band-btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}
.cta-band-btn:hover { opacity: 0.85; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 56px 80px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1a1a1a;
  align-items: start;
}
.footer-brand {}
.footer-logo {
  height: 24px;
  width: auto;
  display: block;
}
.footer-nav-col h4 {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-nav-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-nav-col a:hover { color: var(--white); }
.footer-cols {
  display: contents;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.footer-address {
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: right;
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav-links { gap: 20px; }
  .hero { padding: 64px 24px; }
  .hero-h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--grey-200); }
  .problems-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .ideal-client { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }
  .ic-image { aspect-ratio: 16/9; }
  .ic-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .why-mfg { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .why-mfg-left { position: static; }
  .why-mfg-heading { font-size: 24px; }
  .client-quote { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .cq-attribution { align-items: flex-start; text-align: left; flex-direction: row; }
  .work-grid { grid-template-columns: 1fr; }
  .founder-quote { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-address { text-align: left; }
  .cta-band { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }
  .cta-band-photo { aspect-ratio: 4/3; order: -1; }
  .cta-band-h2 { font-size: 32px; }
}
