/* NODE Creative Lab — Global Styles */

/* ─── FONTS ─────────────────────────────────────── */
@font-face {
  font-family: 'Helvetica Now';
  src: url('assets/fonts/HelveticaNow-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now';
  src: url('assets/fonts/HelveticaNow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now';
  src: url('assets/fonts/HelveticaNow-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif Pro';
  src: url('assets/fonts/SourceSerifPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LoRes21';
  src: url('assets/fonts/LoRes21OTSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif Pro';
  src: url('assets/fonts/SourceSerifPro-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --verde:     #32614d;
  --coral:     #fc5c46;
  --azul:      #cbe5fe;
  --crema:     #eee7b1;
  --sage-d:    #687b4b;
  --sage-l:    #b3d2b3;
  --charcoal:  #213f3d;
  --borgona:   #6f2720;
  --off-white: #f5f3ee;

  --font-display: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif:   'Source Serif Pro', Georgia, 'Times New Roman', serif;

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.35s, backdrop-filter 0.35s;
}
nav.scrolled {
  background: rgba(33, 63, 61, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-nav {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.logo-hero {
  width: clamp(220px, 30vw, 380px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  margin-bottom: 56px;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: 13px;
  color: white;
  letter-spacing: 0.06em;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding: var(--nav-h) 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  margin-bottom: 48px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 1.0;
  color: white;
  max-width: 820px;
  margin-bottom: 36px;
  letter-spacing: -0.053em;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.hero-body {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 52px;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--coral);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: #e5483a; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  border: 1px solid var(--verde);
  color: var(--verde);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--verde); color: white; }
.btn-light {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.btn-light:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ─── SHARED SECTION BASE ─────────────────────── */
section { padding: 100px 40px; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 48px;
  display: block;
}
.section-label.light { color: rgba(255,255,255,0.4); }

/* ─── PROBLEM SECTION ─────────────────────────── */
.section-problem {
  background: var(--verde);
  color: white;
}
.section-problem .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.053em;
}
.problem-body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}
.problem-body p + p { margin-top: 20px; }

/* ─── SYSTEM SECTION ─────────────────────────── */
.section-system { background: var(--off-white); }
.section-system .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.system-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sage-l);
}
.system-image img { width: 100%; height: 100%; object-fit: cover; }
.system-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.053em;
  margin-bottom: 32px;
}
.system-content p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(33,63,61,0.8);
}
.system-content p + p { margin-top: 16px; }
.system-dpv {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--verde);
  margin-top: 36px;
  display: block;
}

/* ─── SERVICES SECTION ─────────────────────────── */
.section-services { background: var(--charcoal); }
.section-services .section-inner > h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.053em;
  color: white;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px 40px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-card-num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin-bottom: 16px;
}
.service-card .service-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  flex: 1;
}
.service-card .service-items {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 28px;
}
.service-card .service-outcome {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--crema);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.service-card .service-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.service-card .service-link:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* ─── PROCESS SECTION — STAIRCASE ─────────────── */
.section-process {
  background: var(--charcoal);
  padding: 80px 60px 100px;
  overflow: hidden;
}
.process-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  padding: 0;
}
.process-header-bar .section-label { color: rgba(255,255,255,0.5); }
.process-header-bar h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.053em;
  color: white;
}
.process-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: none;
}
.process-col {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s ease;
  border: none;
  background: none;
  padding: 0;
  display: block;
}
.process-col.visible { opacity: 1; transform: translateX(0); }
.process-col:nth-child(1) { margin-left: 0;    transition-delay: 0.04s; }
.process-col:nth-child(2) { margin-left: 14%;  transition-delay: 0.14s; }
.process-col:nth-child(3) { margin-left: 27%;  transition-delay: 0.24s; }
.process-col:nth-child(4) { margin-left: 40%;  transition-delay: 0.34s; }
.process-col:nth-child(5) { margin-left: 53%;  transition-delay: 0.44s; }
.process-col:nth-child(6) { margin-left: 66%;  transition-delay: 0.54s; }

.process-pill-wrap {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 48px;
  background: var(--crema);
  border-radius: 100px;
  cursor: default;
  transition: background 0.2s ease, transform 0.2s ease;
}
.process-pill-wrap:hover { background: var(--off-white); transform: translateY(-2px); }
.process-col.rise .process-pill-wrap { background: var(--coral); }
.process-col.rise .process-pill-wrap:hover { background: #e84e3a; }

.pcol-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(33,63,61,0.4);
}
.process-col.rise .pcol-num { color: rgba(255,255,255,0.5); }
.pcol-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(16px, 1.5vw, 22px);
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.process-col.rise .pcol-name { color: white; }

.pcol-desc {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(238,231,177,0.65);
  font-style: italic;
  margin-top: 12px;
  padding-left: 4px;
  max-width: 260px;
  display: none;
}
.process-col.active .pcol-desc {
  display: block;
  animation: fadeDesc 0.3s ease;
}
.process-col.active .process-pill-wrap {
  background: white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.process-col.rise.active .process-pill-wrap {
  background: #e84e3a;
  box-shadow: 0 6px 24px rgba(252,92,70,0.35);
}
@keyframes fadeDesc {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MARQUEE ─────────────────────────────────── */
.section-marquee {
  background: var(--charcoal);
  padding: 72px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 24px);
  color: rgba(255,255,255,0.45);
  padding: 0 60px;
  font-style: italic;
  line-height: 1.5;
  flex-shrink: 0;
}
.marquee-sep {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--coral);
  padding: 0 10px;
  font-style: normal;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CONTACT SECTION ─────────────────────────── */
.section-contact { background: var(--off-white); }
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}
.contact-inner > h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.053em;
  color: var(--charcoal);
  margin-bottom: 60px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-d);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(33,63,61,0.2);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(33,63,61,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--verde); }
.form-group textarea { resize: none; height: 96px; }
.form-submit { grid-column: 1 / -1; margin-top: 8px; }
.form-success {
  grid-column: 1 / -1;
  padding: 28px 0 8px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde);
  line-height: 1.8;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 60px 40px;
  color: white;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.footer-right {
  text-align: right;
}
.footer-nav {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  justify-content: flex-end;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; }
.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ─── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  min-height: 60vh;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: var(--nav-h) 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.053em;
  color: white;
  max-width: 720px;
}
.page-hero .page-hero-sub {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-top: 24px;
}

/* ─── ABOUT — CONCEPT ─────────────────────────── */
.section-concept { background: var(--off-white); }
.section-concept .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.concept-2col { align-items: center; }
.concept-text { display: flex; flex-direction: column; }
.concept-photo {
  overflow: hidden;
  border-radius: 4px;
}
.concept-photo img { width: 100%; display: block; object-fit: cover; }
.concept-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 32px;
  display: block;
}
.concept-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.053em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.concept-body p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(33,63,61,0.8);
}
.concept-body p + p { margin-top: 20px; }
.concept-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(33,63,61,0.6);
  font-style: italic;
  border-left: 2px solid var(--coral);
  padding-left: 20px;
  margin-top: 36px;
}

/* ─── PULL QUOTE ─────────────────────────────── */
.section-pull-quote {
  background: var(--verde);
  padding: 100px 40px;
}
.section-pull-quote blockquote {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}
.section-pull-quote blockquote::before {
  content: '"';
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: rgba(255,255,255,0.2);
  line-height: 0.8;
  margin-bottom: 24px;
}

/* ─── WHY A LAB ─────────────────────────────── */
.section-lab { background: var(--charcoal); color: white; }
.section-lab .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lab-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.053em;
  line-height: 1.1;
  color: white;
}
.lab-body p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}
.lab-body p + p { margin-top: 20px; }
.lab-closing {
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--crema);
  letter-spacing: 0.04em;
}

/* ─── WHY WORK WITH US ─────────────────────────── */
.section-why { background: var(--off-white); }
.section-why > .section-inner > h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.053em;
  margin-bottom: 60px;
}
.why-list {
  border-top: 1px solid rgba(33,63,61,0.1);
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(33,63,61,0.1);
}
.why-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  color: var(--sage-d);
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.why-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.why-content p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(33,63,61,0.7);
}

/* ─── FOUNDERS ─────────────────────────────── */
.section-founders { background: var(--crema); }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.founders-left-photo {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: 4px;
}
.founders-left-photo img { width: 100%; display: block; object-fit: cover; }
.founders-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 0;
}
.founder-card { }
.founder-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sage-l);
  margin-bottom: 28px;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.053em;
  line-height: 1.05;
  margin-bottom: 10px;
}
.founder-role {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 16px;
}
.founder-bio {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(33,63,61,0.75);
}

/* ─── LAB SESSION BLOCK ─────────────────────── */
.section-lab-session {
  background: var(--charcoal);
  padding: 100px 40px;
}
.lab-session-inner {
  max-width: 680px;
  margin: 0 auto;
}
.lab-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crema);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px;
  margin-bottom: 36px;
}
.section-lab-session h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.053em;
  color: white;
  margin-bottom: 24px;
}
.section-lab-session .lab-sub {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.lab-includes {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lab-includes li {
  display: flex;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}
.lab-includes li::before {
  content: '—';
  color: var(--coral);
  flex-shrink: 0;
}
.lab-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ─── SERVICES PAGE ─────────────────────────── */
.services-intro {
  background: var(--off-white);
  padding: 80px 40px;
}
.services-intro p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.75;
  color: rgba(33,63,61,0.75);
  max-width: 640px;
}
.service-section {
  padding: 80px 40px;
  border-top: 1px solid rgba(33,63,61,0.08);
}
.service-section:nth-child(even) {
  background: var(--charcoal);
  color: white;
  border-top-color: rgba(255,255,255,0.06);
}
.service-section .section-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.service-section-title {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.service-section-title .svc-num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}
.service-section-title h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.053em;
  line-height: 1.1;
}
.service-content > p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.service-section:nth-child(even) .service-content > p { color: rgba(255,255,255,0.75); }
.includes-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 24px;
}
.service-section:nth-child(even) .includes-title { color: var(--sage-l); }
.include-group {
  margin-bottom: 36px;
}
.include-group h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.service-section:nth-child(even) .include-group h4 { color: white; }
.include-duration {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--sage-d);
  margin-bottom: 12px;
  display: block;
}
.service-section:nth-child(even) .include-duration { color: rgba(255,255,255,0.35); }
.include-items {
  list-style: none;
}
.include-items li {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 2;
  color: rgba(33,63,61,0.65);
}
.service-section:nth-child(even) .include-items li { color: rgba(255,255,255,0.55); }
.include-items li::before { content: '—'; color: var(--coral); flex-shrink: 0; }
.service-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(33,63,61,0.1);
}
.service-section:nth-child(even) .service-cta { border-top-color: rgba(255,255,255,0.08); }

/* ─── WORK PAGE ─────────────────────────────── */
.section-work { padding: 0; background: var(--off-white); }
.work-intro {
  padding: 80px 40px;
}
.work-intro p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(33,63,61,0.7);
  max-width: 560px;
}
/* ─── WORK — PROJECT ROWS ─────────────────────── */
.project-row {
  padding: 56px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid rgba(33,63,61,0.08);
}
.project-imgs {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
}
.p-2col { grid-template-columns: 1fr 1fr; }
.p-3col { grid-template-columns: repeat(3, 1fr); }
.work-img {
  overflow: hidden;
  background: var(--crema);
  aspect-ratio: 4/3;
}
.work-img.p-main { aspect-ratio: unset; grid-row: span 1; }
.work-img img,
.work-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.work-img:hover img,
.work-img:hover video { transform: scale(1.03); }
.work-video video { object-position: center; }

.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(33,63,61,0.45);
}
.project-meta.p-split {
  justify-content: space-between;
}
.project-meta.p-split span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-dot { opacity: 0.4; }
.p-year { color: rgba(33,63,61,0.3); }

/* keep old classes for any reference */
.work-grid { display: none; }

/* ─── WORK GRID v2 ────────────────────────────── */
.wgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: rgba(33,63,61,0.06);
  padding: 3px;
}
.wcard {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--crema);
  cursor: pointer;
}
.wcard-wide { grid-column: span 2; aspect-ratio: 16/7; }
.wcard-img {
  width: 100%;
  height: 100%;
}
.wcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.wcard:hover .wcard-img img { transform: scale(1.05); }
.wcard-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(33,63,61,0.82) 0%, transparent 60%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wcard:hover .wcard-label { opacity: 1; }

/* ─── CONTENT CREATION SECTION ───────────────── */
.section-cc {
  background: var(--charcoal);
  padding: 80px 40px;
}
.cc-bar {
  max-width: var(--max-w);
  margin: 0 auto 48px;
}
.cc-videos {
  max-width: var(--max-w);
  margin: 0 auto 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.cc-video-wrap {
  overflow: hidden;
  position: relative;
  height: 520px;
}
.cc-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.cc-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cc-still {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cc-still img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ─── LIGHTBOX ────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22,40,39,0.97);
  z-index: 500;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 60px;
  overflow-y: auto;
}
.lightbox.open { display: flex; }
.lb-media {
  display: grid;
  gap: 4px;
  width: 100%;
  max-width: 1100px;
}
.lb-cols-1 { grid-template-columns: 1fr; max-width: 700px; }
.lb-cols-2 { grid-template-columns: 1fr 1fr; }
.lb-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lb-item { overflow: hidden; }
.lb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}
.lb-close {
  position: fixed;
  top: 28px; right: 36px;
  font-size: 36px;
  line-height: 1;
  color: white;
  opacity: 0.5;
  transition: opacity 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  z-index: 10;
}
.lb-close:hover { opacity: 1; }
.lb-footer {
  margin-top: 24px;
  text-align: center;
}
.lb-service {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.work-coming {
  padding: 80px 40px;
  text-align: center;
}
.work-coming p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(33,63,61,0.5);
  font-style: italic;
}

/* ─── HERO BG IMAGE OVERRIDE ─────────────────── */
.hero {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero::before {
  background: linear-gradient(
    108deg,
    rgba(33,63,61,0.93) 0%,
    rgba(33,63,61,0.80) 55%,
    rgba(33,63,61,0.52) 100%
  );
}

/* ─── DIRECTION PURPOSE VISION SECTION ────────── */
.section-dpv {
  background: var(--off-white);
  text-align: center;
  padding: 100px 40px;
}
.section-dpv .section-label {
  text-align: center;
  margin-bottom: 40px;
}
.dpv-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 68px);
  letter-spacing: -0.053em;
  color: var(--charcoal);
  margin-bottom: 36px;
  line-height: 1.0;
}
.dpv-body {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  color: rgba(33,63,61,0.65);
  max-width: 560px;
  margin: 0 auto 44px;
}
.dpv-icon {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dpv-icon span {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}

/* ─── HOME SERVICES (5-column cards) ────────────── */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.service-card-home {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 28px 24px 32px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.service-card-home:hover { background: rgba(255,255,255,0.1); }
.service-card-home-top {
  display: flex;
  justify-content: flex-end;
}
.service-card-home-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.service-card-home h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: white;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ─── CONTACT 2-COL ──────────────────────────── */
.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-col {}
.contact-col > h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.053em;
  color: var(--charcoal);
  margin-bottom: 52px;
}

/* form service buttons */
.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.form-check {
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  display: none;
}
.form-check span {
  display: block;
  padding: 10px 22px;
  border: 1.5px solid rgba(33,63,61,0.28);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(33,63,61,0.7);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.form-check input[type="checkbox"]:checked + span {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}

/* ─── FOOTER LOGO ─────────────────────────────── */
.logo-footer {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  display: block;
  margin-bottom: 10px;
}

/* ─── SECTION PROBLEM — SAGE GREEN ────────────── */
.section-problem-home {
  background: var(--sage-l);
}
.section-problem-home .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
.problem-col:first-child {
  padding-right: 80px;
  border-right: 1px solid rgba(33,63,61,0.2);
}
.problem-col:last-child {
  padding-left: 80px;
}

/* hero node word */
.hero-node {
  font-family: 'LoRes21', monospace;
  font-weight: 400;
  color: var(--sage-l);
  letter-spacing: 0.04em;
}
.hero-node-suffix {
  color: var(--sage-l);
  font-family: var(--font-display);
  font-weight: 900;
}
.problem-col .col-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 24px;
  display: block;
}
.problem-col h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.053em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.problem-col h3 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.problem-col p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(33,63,61,0.75);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid-home { grid-template-columns: repeat(3, 1fr); }
  .process-col:nth-child(2) { margin-left: 10%; }
  .process-col:nth-child(3) { margin-left: 20%; }
  .process-col:nth-child(4) { margin-left: 30%; }
  .process-col:nth-child(5) { margin-left: 40%; }
  .process-col:nth-child(6) { margin-left: 50%; }
}

@media (max-width: 900px) {
  .section-process { padding: 60px 32px 80px; }
  .process-col:nth-child(n) { margin-left: 0 !important; }
  .process-pill-wrap { padding: 15px 36px; }
  .section-problem-home .section-inner { grid-template-columns: 1fr; }
  .problem-col:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(33,63,61,0.2); padding-bottom: 48px; }
  .problem-col:last-child { padding-left: 0; padding-top: 48px; }
  .contact-2col { grid-template-columns: 1fr; gap: 32px; }
  .contact-image { order: -1; aspect-ratio: 4/3; }
  .contact-image img { object-position: top center; }
  .section-problem .section-inner,
  .section-system .section-inner,
  .section-concept .section-inner,
  .section-lab .section-inner,
  .founders-grid,
  .service-section .section-inner { grid-template-columns: 1fr; gap: 48px; }
  .founders-left-photo { position: static; }
  .founders-right { padding: 0; }

  .service-section-title { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.wide { grid-column: span 2; aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  section { padding: 72px 24px; }
  .hero { padding: calc(var(--nav-h) + 32px) 24px 64px; }
  .page-hero { padding: calc(var(--nav-h) + 32px) 24px 60px; }
  .section-pull-quote,
  .section-lab-session,
  .lab-session { padding: 72px 24px; }
  .services-intro,
  .service-section,
  .work-intro { padding: 64px 24px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(33,63,61,0.98);
    padding: 32px 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .process-step-row:nth-child(n) { margin-left: 0 !important; }
  .process-pill { font-size: 15px; padding: 13px 28px; }
  .process-header-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .process-header-bar h2 { text-align: left; }

  .contact-form { grid-template-columns: 1fr; gap: 16px; }
  .form-group.full { grid-column: 1; }
  .form-group { gap: 6px; }
  .form-checks { gap: 7px; }
  .form-check span { padding: 7px 14px; font-size: 10px; letter-spacing: 0.08em; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-right { text-align: left; }
  .footer-nav { justify-content: flex-start; }

  .why-item { grid-template-columns: 56px 1fr; gap: 20px; }
  .project-row { padding: 40px 24px; }
  .p-3col { grid-template-columns: repeat(2, 1fr); }

  .process-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .services-grid,
  .services-grid-home,
  .section-founders .section-inner { grid-template-columns: 1fr; }
  .p-2col, .p-3col { grid-template-columns: 1fr; }
  .work-card.wide { grid-column: span 1; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .services-grid-home { grid-template-columns: repeat(2, 1fr); }
  .section-dpv { padding: 72px 24px; }
  .dpv-headline { font-size: clamp(28px, 7vw, 48px); }
}
