/* ─── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal-black: #1A1A1A;
  --soft-charcoal:  #323030;
  --deep-olive:     #4D5246;
  --soft-stone:     #CCCBC5;
  --sand-neutral:   #C7BBAA;
  --soft-beige:     #EDE7DF;
  --porcelain-white:#F5F5F3;

  --font-primary: 'Lato', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease-out);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background: var(--porcelain-white);
  color: var(--charcoal-black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,245,243,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,26,0.08);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(245,245,243,0.98);
  box-shadow: 0 2px 40px rgba(26,26,26,0.06);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}

.logo-line {
  width: 3px;
  background: var(--charcoal-black);
  border-radius: 1px;
  transition: background var(--transition);
}

.logo-line:nth-child(1) { height: 24px; }
.logo-line:nth-child(2) { height: 32px; }
.logo-line:nth-child(3) { height: 28px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--charcoal-black);
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--soft-charcoal);
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal-black); }

.nav-links a.active { font-weight: 700; }

.nav-cta {
  background: var(--charcoal-black) !important;
  color: var(--porcelain-white) !important;
  padding: 10px 22px !important;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--deep-olive) !important;
  color: var(--porcelain-white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal-black);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal-black);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  display: block;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--porcelain-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,245,243,0.1);
  width: 100%;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--sand-neutral); }

/* ─── UTILITIES ────────────────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep-olive);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--deep-olive);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal-black);
}

.section-title.light { color: var(--porcelain-white); }

.body-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft-charcoal);
}

.body-text.light { color: var(--soft-stone); }

.divider {
  width: 100%;
  height: 1px;
  background: rgba(26,26,26,0.1);
}

.divider.light { background: rgba(245,245,243,0.15); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--charcoal-black);
  color: var(--porcelain-white);
}

.btn-primary:hover {
  background: var(--deep-olive);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal-black);
  border: 1.5px solid var(--charcoal-black);
}

.btn-outline:hover {
  background: var(--charcoal-black);
  color: var(--porcelain-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--porcelain-white);
  border: 1.5px solid rgba(245,245,243,0.4);
}

.btn-outline-light:hover {
  background: var(--porcelain-white);
  color: var(--charcoal-black);
}

.btn-arrow::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s;
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* ─── PAGE TOP PADDING ─────────────────────────────────────── */
.page-top { padding-top: 72px; }

/* ─── HERO — HOME ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--charcoal-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  top: 0; right: 80px; bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-bg-line {
  width: 2px;
  height: 70%;
  background: var(--porcelain-white);
  border-radius: 1px;
}

.hero-bg-line:nth-child(1) { height: 55%; }
.hero-bg-line:nth-child(2) { height: 75%; }
.hero-bg-line:nth-child(3) { height: 60%; }

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand-neutral);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--sand-neutral);
}

.hero-headline {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--porcelain-white);
  max-width: 900px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-headline em {
  font-style: normal;
  color: var(--sand-neutral);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--soft-stone);
  max-width: 560px;
  margin-top: 40px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-bottom {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,243,0.35);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(245,245,243,0.2);
}

.hero-stat-row {
  display: flex;
  gap: 60px;
}

.hero-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--porcelain-white);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,243,0.4);
}

/* ─── HOME: MARQUEE ────────────────────────────────────────── */
.marquee-strip {
  background: var(--deep-olive);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--porcelain-white);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.marquee-sep {
  width: 4px;
  height: 4px;
  background: var(--sand-neutral);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HOME: ABOUT STRIP ────────────────────────────────────── */
.about-strip {
  background: var(--porcelain-white);
  padding: 120px 0;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-strip-visual {
  position: relative;
  height: 440px;
  background: var(--soft-beige);
  overflow: hidden;
}

.about-strip-visual-lines {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.asl {
  width: 4px;
  background: var(--charcoal-black);
  border-radius: 2px;
}

.asl:nth-child(1) { height: 80px; }
.asl:nth-child(2) { height: 120px; }
.asl:nth-child(3) { height: 96px; }

.about-strip-tag {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--charcoal-black);
  color: var(--porcelain-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
}

.about-strip-number {
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(26,26,26,0.06);
  position: absolute;
  top: 20px;
  left: 30px;
}

.about-strip-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 28px;
}

.about-strip-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft-charcoal);
  margin-bottom: 20px;
}

.about-strip-text .btn { margin-top: 20px; }

/* ─── HOME: SERVICES PREVIEW ───────────────────────────────── */
.services-preview {
  background: var(--charcoal-black);
  padding: 120px 0;
}

.services-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,245,243,0.08);
}

.service-card {
  background: var(--charcoal-black);
  padding: 48px 40px;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sand-neutral);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover { background: var(--soft-charcoal); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(245,245,243,0.2);
  margin-bottom: 32px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--porcelain-white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,245,243,0.5);
  line-height: 1.65;
}

.service-arrow {
  display: inline-block;
  margin-top: 32px;
  font-size: 20px;
  color: var(--sand-neutral);
  transition: transform 0.2s;
}

.service-card:hover .service-arrow { transform: translateX(6px); }

/* ─── HOME: CASE STUDIES PREVIEW ───────────────────────────── */
.case-preview {
  padding: 120px 0;
  background: var(--soft-beige);
}

.case-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-item {
  display: grid;
  grid-template-columns: 80px 1fr 200px 120px;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
  cursor: pointer;
  transition: all 0.25s;
}

.case-item:hover { padding-left: 16px; }

.case-item-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(26,26,26,0.3);
}

.case-item-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.case-item-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-olive);
}

.case-item-arrow {
  font-size: 20px;
  color: var(--charcoal-black);
  text-align: right;
  transition: transform 0.2s;
}

.case-item:hover .case-item-arrow { transform: translateX(8px); }

/* ─── HOME: VALUES ─────────────────────────────────────────── */
.values-section {
  padding: 120px 0;
  background: var(--porcelain-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(26,26,26,0.08);
  margin-top: 72px;
}

.value-card {
  background: var(--porcelain-white);
  padding: 48px 32px;
  transition: background 0.3s;
}

.value-card:hover { background: var(--soft-beige); }

.value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.vi { width: 4px; background: var(--charcoal-black); border-radius: 1px; }
.vi:nth-child(1) { height: 24px; }
.vi:nth-child(2) { height: 32px; }
.vi:nth-child(3) { height: 20px; }

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--charcoal-black);
}

.value-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--soft-charcoal);
}

/* ─── HOME: APPROACH PREVIEW ───────────────────────────────── */
.approach-preview {
  background: var(--soft-charcoal);
  padding: 120px 0;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(245,245,243,0.15);
}

.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(245,245,243,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sand-neutral);
  margin: 0 auto 28px;
  background: var(--soft-charcoal);
  position: relative;
  z-index: 1;
}

.step-item h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--porcelain-white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245,245,243,0.45);
}

/* ─── HOME: INSIGHTS ───────────────────────────────────────── */
.insights-preview {
  padding: 120px 0;
  background: var(--porcelain-white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.insight-card {
  cursor: pointer;
  group: true;
}

.insight-thumb {
  aspect-ratio: 16/9;
  background: var(--soft-beige);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

.insight-thumb-inner {
  width: 100%;
  height: 100%;
  background: var(--soft-stone);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-card:hover .insight-thumb-inner { transform: scale(1.04); }

.insight-thumb-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--charcoal-black);
  color: var(--porcelain-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.insight-thumb-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0.3;
}

.itl { width: 5px; background: var(--charcoal-black); border-radius: 2px; }
.itl:nth-child(1) { height: 30px; }
.itl:nth-child(2) { height: 50px; }
.itl:nth-child(3) { height: 38px; }

.insight-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-olive);
  margin-bottom: 10px;
}

.insight-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.insight-card:hover .insight-title { color: var(--deep-olive); }

.insight-meta {
  font-size: 12px;
  font-weight: 400;
  color: rgba(26,26,26,0.4);
  letter-spacing: 0.04em;
}

/* ─── HOME: CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--deep-olive);
  padding: 100px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-band h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--porcelain-white);
  line-height: 1.05;
}

.cta-band p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,245,243,0.65);
  margin-top: 16px;
  max-width: 460px;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--charcoal-black);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,245,243,0.08);
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,245,243,0.45);
  margin-top: 24px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,243,0.3);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,245,243,0.6);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--porcelain-white); }

.footer-bottom {
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,245,243,0.25);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,245,243,0.3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sand-neutral); }

/* ─── ABOUT PAGE ───────────────────────────────────────────── */
.page-hero {
  min-height: 65vh;
  background: var(--charcoal-black);
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: var(--soft-charcoal);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-neutral);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.page-hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sand-neutral);
}

.page-hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--porcelain-white);
}

.page-hero p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(245,245,243,0.5);
  margin-top: 28px;
  max-width: 480px;
}

/* Philosophy section */
.philosophy {
  padding: 120px 0;
  background: var(--soft-beige);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.philosophy-visual {
  position: relative;
  height: 480px;
}

.phil-block {
  position: absolute;
  background: var(--charcoal-black);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.phil-block.a { top: 0; left: 0; width: 60%; height: 55%; }
.phil-block.b { bottom: 0; right: 0; width: 70%; height: 50%; background: var(--deep-olive); }
.phil-block.c { top: 30%; left: 50%; width: 40%; height: 30%; background: var(--sand-neutral); }

.phil-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,243,0.5);
}

.philosophy-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 32px;
}

.philosophy-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft-charcoal);
  margin-bottom: 20px;
}

/* Values full */
.values-full {
  padding: 120px 0;
  background: var(--charcoal-black);
}

.values-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,245,243,0.06);
  margin-top: 72px;
}

.value-full-card {
  background: var(--charcoal-black);
  padding: 60px 52px;
  transition: background 0.3s;
}

.value-full-card:hover { background: rgba(245,245,243,0.04); }

.value-full-card h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--porcelain-white);
  margin-bottom: 20px;
}

.value-full-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,245,243,0.5);
}

.value-num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(245,245,243,0.05);
  line-height: 1;
  margin-bottom: 20px;
}

/* Team */
.team-section {
  padding: 120px 0;
  background: var(--porcelain-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.team-card {
  background: var(--soft-beige);
  overflow: hidden;
}

.team-photo {
  aspect-ratio: 3/4;
  background: var(--soft-stone);
  position: relative;
  overflow: hidden;
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: var(--charcoal-black);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card:hover .team-photo-overlay { opacity: 0.6; }

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tpp-lines {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0.2;
}

.tppl { width: 5px; background: var(--charcoal-black); border-radius: 2px; }
.tppl:nth-child(1) { height: 40px; }
.tppl:nth-child(2) { height: 64px; }
.tppl:nth-child(3) { height: 50px; }

.team-info {
  padding: 28px 28px 32px;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.team-info span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-olive);
}

/* ─── SERVICES PAGE ────────────────────────────────────────── */
.services-full {
  padding: 100px 0 120px;
  background: var(--porcelain-white);
}

.service-full-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(26,26,26,0.1);
}

.service-full-item {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  cursor: pointer;
  transition: all 0.25s;
}

.service-full-item:hover { background: rgba(26,26,26,0.02); padding-left: 16px; }

.sfi-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(26,26,26,0.25);
  padding-top: 4px;
}

.sfi-main h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.sfi-main p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--soft-charcoal);
}

.sfi-deliverables h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  margin-bottom: 20px;
}

.sfi-deliverables ul { list-style: none; }

.sfi-deliverables li {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft-charcoal);
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sfi-deliverables li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sand-neutral);
  flex-shrink: 0;
}

/* ─── CASE STUDIES PAGE ────────────────────────────────────── */
.case-studies-full {
  padding: 100px 0 120px;
  background: var(--porcelain-white);
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 72px;
}

.cs-card {
  background: var(--soft-beige);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.cs-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cs-thumb {
  aspect-ratio: 16/10;
  background: var(--soft-stone);
  position: relative;
  overflow: hidden;
}

.cs-card:first-child .cs-thumb { aspect-ratio: auto; min-height: 360px; }

.cs-thumb-overlay {
  position: absolute;
  inset: 0;
  background: var(--charcoal-black);
  opacity: 0.15;
  transition: opacity 0.3s;
}

.cs-card:hover .cs-thumb-overlay { opacity: 0.3; }

.cs-thumb-lines {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.ctl { width: 4px; background: var(--porcelain-white); border-radius: 2px; opacity: 0.5; }
.ctl:nth-child(1) { height: 28px; }
.ctl:nth-child(2) { height: 44px; }
.ctl:nth-child(3) { height: 34px; }

.cs-content {
  padding: 36px 36px 40px;
}

.cs-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-olive);
  margin-bottom: 16px;
}

.cs-content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cs-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--soft-charcoal);
  margin-bottom: 24px;
}

.cs-outcome {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,26,26,0.1);
}

.cs-outcome-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--charcoal-black);
}

.cs-outcome-item span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.4);
}

/* ─── APPROACH PAGE ────────────────────────────────────────── */
.approach-full {
  padding: 100px 0 120px;
  background: var(--porcelain-white);
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 72px;
}

.approach-step {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}

.approach-step:first-child { border-top: 1px solid rgba(26,26,26,0.1); }

.as-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(26,26,26,0.07);
  line-height: 1;
}

.as-main h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.as-main p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft-charcoal);
}

.as-detail {
  background: var(--soft-beige);
  padding: 32px;
}

.as-detail h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  margin-bottom: 20px;
}

.as-detail-item {
  font-size: 14px;
  font-weight: 400;
  color: var(--soft-charcoal);
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  display: flex;
  gap: 12px;
}

.as-detail-item:last-child { border: none; }

.as-dot {
  width: 6px;
  height: 6px;
  background: var(--sand-neutral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── INSIGHTS PAGE ────────────────────────────────────────── */
.insights-full {
  padding: 100px 0 120px;
  background: var(--porcelain-white);
}

.insights-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-bottom: 64px;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(26,26,26,0.2);
  background: transparent;
  color: var(--soft-charcoal);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-primary);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--charcoal-black);
  color: var(--porcelain-white);
  border-color: var(--charcoal-black);
}

.insights-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.featured-insight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--soft-beige);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 16px;
}

.fi-thumb {
  min-height: 400px;
  background: var(--soft-stone);
  position: relative;
  overflow: hidden;
}

.fi-thumb-inner {
  width: 100%;
  height: 100%;
  background: var(--sand-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out);
}

.featured-insight:hover .fi-thumb-inner { transform: scale(1.04); }

.fi-content {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep-olive);
  margin-bottom: 8px;
}

.fi-content h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.fi-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--soft-charcoal);
}

.fi-meta {
  margin-top: 32px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(26,26,26,0.4);
}

/* ─── WORK WITH US PAGE ────────────────────────────────────── */
.work-with-us {
  padding: 100px 0 120px;
  background: var(--porcelain-white);
}

.wwu-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
  margin-top: 72px;
}

.wwu-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 28px;
}

.wwu-info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft-charcoal);
  margin-bottom: 20px;
}

.engagement-types {
  margin-top: 48px;
}

.engagement-types h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  margin-bottom: 24px;
}

.eng-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}

.eng-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.eng-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--soft-charcoal);
  margin: 0;
}

/* Form */
.contact-form {
  background: var(--charcoal-black);
  padding: 52px 48px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--porcelain-white);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,243,0.4);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(245,245,243,0.06);
  border: 1px solid rgba(245,245,243,0.1);
  color: var(--porcelain-white);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sand-neutral);
}

.form-group select option { background: var(--charcoal-black); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  background: var(--porcelain-white);
  color: var(--charcoal-black);
  border: none;
  padding: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--sand-neutral);
}

/* ─── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page {
  padding: 100px 0 120px;
  background: var(--porcelain-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
  margin-top: 72px;
}

.contact-info h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.contact-info p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft-charcoal);
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cd-icon {
  width: 40px;
  height: 40px;
  background: var(--soft-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.cd-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  margin-bottom: 4px;
}

.cd-info span {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal-black);
}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .steps-row     { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .case-item     { grid-template-columns: 60px 1fr 160px 80px; gap: 24px; }
}

@media (max-width: 1024px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.04em; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-strip-visual { height: 320px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 60px; }
  .philosophy-visual { height: 360px; }
  .service-full-item { grid-template-columns: 80px 1fr; }
  .sfi-deliverables { display: none; }
  .approach-step { grid-template-columns: 80px 1fr; }
  .as-detail { display: none; }
  .wwu-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .cs-card:first-child { grid-template-columns: 1fr; }
  .cs-card:first-child .cs-thumb { aspect-ratio: 16/9; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-full-grid { grid-template-columns: 1fr; }
  .featured-insight { grid-template-columns: 1fr; }
  .fi-thumb { min-height: 280px; }
}

/* Nav collapses to hamburger at 900px — extra items need more space */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }

  .hero-content { padding: 100px 24px 80px; }
  .hero-bottom  { padding: 0 24px; }
  .hero-stat-row { gap: 32px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-strip  { padding: 80px 0; }
  .services-preview  { padding: 80px 0; }
  .case-preview { padding: 80px 0; }
  .values-section    { padding: 80px 0; }
  .approach-preview  { padding: 80px 0; }
  .insights-preview  { padding: 80px 0; }
  .cta-band  { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .steps-row     { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .insights-grid { grid-template-columns: 1fr; }
  .cs-grid       { grid-template-columns: 1fr; }
  .cs-card:first-child { grid-column: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .values-full-grid { grid-template-columns: 1fr; }
  .insights-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  .case-item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .case-item-tag,
  .case-item-arrow { display: none; }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-preview-header,
  .case-preview-header { flex-direction: column; align-items: flex-start; }

  .page-hero { min-height: 50vh; padding-bottom: 60px; }

  .service-full-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sfi-num { display: none; }

  .approach-step {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form { padding: 36px 28px; }

  .hero-bg-lines { display: none; }

  /* Testimonials page */
  .tl-featured-grid { grid-template-columns: 1fr !important; }
  .tl-grid { grid-template-columns: 1fr !important; }
  .tl-submit-form { padding: 36px 24px !important; }
}

@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea,
  input[type="email"],
  input[type="text"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
  .hero-stat-row { display: none; }
  .hero-bottom { display: none; }
  .mobile-menu { padding: 80px 28px 40px; }
  .mobile-menu a { font-size: clamp(22px, 6vw, 36px); padding: 10px 0; }
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
@media (pointer: fine) {
  * { cursor: none !important; }
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--porcelain-white);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(199,187,170,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

.cursor-ring.hovering {
  width: 58px; height: 58px;
  border-color: var(--sand-neutral);
}

/* ─── HERO CANVAS ─────────────────────────────────────────── */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ─── MORPH WORD ──────────────────────────────────────────── */
.morph-word {
  display: inline-block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.morph-word.exit {
  opacity: 0;
  transform: translateY(10px);
}

.morph-word.enter {
  opacity: 0;
  transform: translateY(-10px);
}
