:root {
  --ink: #181914;
  --paper: #f3f0e6;
  --paper-2: #e8e4d8;
  --white: #fffdf7;
  --line: rgba(24, 25, 20, 0.2);
  --muted: #5d6058;
  --lime: #dfff63;
  --orange: #ff714a;
  --blue: #7078ed;
  --max: 1240px;

  /* v4 homepage direction (Claude Design import, 29 Aug 2026) */
  --v4-cream: #f6f1e6;
  --v4-cream-2: #ece4d1;
  --v4-ink: #15170f;
  --v4-muted: #63665a;
  --v4-body: #3d3f36;
  --v4-green: #0d3617;
  --v4-green-2: #0d3618;
  --v4-yellow: #ffe066;
  --v4-orange: #d9542f;
  --v4-line: rgba(21, 23, 15, .14);
  --v4-max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, input, textarea { font-size: 16px; }
a { color: inherit; }
img { display: block; max-width: 100%; }
p { line-height: 1.6; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: var(--white); padding: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 230, 0.94);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; font-size: 20px; letter-spacing: -0.05em; }
.brand-mark { width: 19px; height: 19px; position: relative; display: inline-block; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: var(--ink); }
.brand-mark::before { width: 4px; height: 19px; left: 1px; top: 0; }
.brand-mark::after { width: 14px; height: 4px; left: 4px; top: 8px; transform: rotate(-43deg); transform-origin: left center; box-shadow: 7px 7px 0 var(--orange); }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { text-decoration: none; font-size: 13px; }
.desktop-nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--ink); border-radius: 999px; padding: 12px 18px; text-decoration: none; transition: transform .2s, background .2s, color .2s; }
.nav-cta { background: var(--ink); color: var(--paper); }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }

.hero { min-height: calc(100vh - 74px); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); border-bottom: 1px solid var(--ink); }
.hero-copy { padding: clamp(70px, 9vw, 140px) clamp(22px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.hero h1, .page-hero h1 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(52px, 7.8vw, 118px);
  line-height: .84;
  letter-spacing: -.085em;
  font-weight: 650;
}
.hero h1 em, .page-hero h1 em { font-family: Georgia, serif; font-weight: 400; color: var(--orange); }
.hero-lead { max-width: 650px; margin: 34px 0 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 36px; }
.button { background: var(--ink); color: var(--paper); padding: 15px 22px; font-size: 14px; }
.button-light { background: transparent; color: var(--ink); }
.text-link { font-size: 14px; text-underline-offset: 5px; }
.hero-art { position: relative; overflow: hidden; background: var(--blue); border-left: 1px solid var(--ink); min-height: 560px; }
.hero-art .orbit { position: absolute; border: 1px solid var(--ink); border-radius: 50%; }
.hero-art .orbit:nth-child(1) { width: 70%; aspect-ratio: 1; left: 15%; top: 14%; }
.hero-art .orbit:nth-child(2) { width: 112%; aspect-ratio: 1; left: -6%; top: -7%; }
.hero-art .core { position: absolute; width: 38%; aspect-ratio: 1; border-radius: 50%; left: 31%; top: 31%; background: var(--lime); border: 1px solid var(--ink); display: grid; place-items: center; font: 42px Georgia, serif; }
.hero-art .note { position: absolute; max-width: 210px; padding: 17px; background: var(--white); border: 1px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); font-size: 13px; line-height: 1.4; }
.hero-art .note-a { left: 8%; bottom: 10%; transform: rotate(-3deg); }
.hero-art .note-b { right: 7%; top: 12%; transform: rotate(4deg); background: var(--orange); }

.trust-strip { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); border-bottom: 1px solid var(--ink); }
.trust-strip > * { padding: 20px clamp(16px, 2.5vw, 36px); margin: 0; border-right: 1px solid var(--line); font-size: 12px; }
.trust-strip > *:last-child { border-right: 0; }
.trust-strip strong { font-size: 14px; }

.section { padding: clamp(80px, 10vw, 150px) clamp(22px, 6vw, 90px); border-bottom: 1px solid var(--ink); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 9vw, 140px); margin-bottom: 64px; }
.section-intro h2, .split h2, .cta-block h2, .page-section h2 { margin: 0; font-size: clamp(42px, 6vw, 84px); line-height: .92; letter-spacing: -.065em; }
.section-intro p { max-width: 560px; margin: 0; font-size: 18px; }

.services-list { border-top: 1px solid var(--ink); }
.service-row { display: grid; grid-template-columns: 70px .8fr 1.3fr auto; gap: 28px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--ink); text-decoration: none; }
.service-row .num { font-size: 12px; padding-top: 8px; }
.service-row h3 { margin: 0; font-size: clamp(28px, 3vw, 48px); letter-spacing: -.055em; line-height: 1; }
.service-row p { margin: 3px 0 0; color: var(--muted); max-width: 650px; }
.service-row .arrow { width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; transition: background .2s, transform .2s; }
a.service-row:hover .arrow { background: var(--lime); transform: rotate(-35deg); }
.service-row.featured { background: var(--lime); margin: 0 -22px; padding-left: 22px; padding-right: 22px; }

.intelligence { background: var(--ink); color: var(--paper); }
.intelligence-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.intelligence h2 { margin: 0; max-width: 760px; font-size: clamp(50px, 7vw, 100px); line-height: .88; letter-spacing: -.075em; }
.intelligence h2 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.intelligence-copy { border-left: 1px solid rgba(255,255,255,.25); padding-left: 38px; }
.intelligence-copy p { font-size: 19px; margin: 0 0 26px; }
.signal-list { list-style: none; margin: 0; padding: 0; }
.signal-list li { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.22); font-size: 14px; }
.signal-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }

.work-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.work-item { margin: 0; }
.work-image { aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--ink); background: var(--paper-2); }
.work-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.work-item:hover img { transform: scale(1.02); }
.work-item figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 15px 2px 30px; font-size: 13px; }
.work-item:nth-child(3) { grid-column: 1 / -1; }

.split { display: grid; grid-template-columns: 1fr 1fr; }
.split > div { padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 90px); }
.split > div:first-child { background: var(--orange); border-right: 1px solid var(--ink); }
.split > div:last-child { background: var(--lime); }
.split p { max-width: 520px; font-size: 18px; }
.steps { margin-top: 40px; border-top: 1px solid var(--ink); }
.step { display: grid; grid-template-columns: 44px 1fr; padding: 18px 0; border-bottom: 1px solid var(--ink); }
.step p { margin: 0; font-size: 15px; }

.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); padding: 0; }
.faq-list summary { cursor: pointer; list-style: none; font-size: clamp(20px, 2.2vw, 30px); padding: 24px 55px 24px 0; position: relative; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 10px; top: 20px; font-size: 30px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; color: var(--muted); margin: -6px 0 28px; }

.cta-block { background: var(--blue); }
.cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.cta-block p { font-size: 18px; max-width: 540px; }
.cta-links { display: flex; flex-direction: column; border-top: 1px solid var(--ink); }
.cta-links a { padding: 18px 0; border-bottom: 1px solid var(--ink); text-decoration: none; display: flex; justify-content: space-between; }
.site-footer { background: var(--ink); color: var(--paper); padding: 35px clamp(22px, 6vw, 90px); display: flex; justify-content: space-between; gap: 24px; font-size: 12px; }
.site-footer a { color: var(--lime); }

.breadcrumbs { max-width: var(--max); margin: 0 auto; padding: 28px clamp(22px, 6vw, 90px) 0; font-size: 12px; color: var(--muted); }
.breadcrumbs a { text-underline-offset: 3px; }
.page-hero { min-height: 75vh; padding: clamp(70px, 9vw, 140px) clamp(22px, 6vw, 90px) 90px; border-bottom: 1px solid var(--ink); display: flex; align-items: end; }
.page-hero-inner { width: 100%; max-width: var(--max); margin: 0 auto; }
.page-hero h1 { max-width: 1100px; }
.page-hero .hero-lead { max-width: 760px; }
.page-hero.websites { background: var(--lime); }
.page-hero.seo { background: var(--blue); }
.page-hero.management { background: var(--orange); }
.page-hero.vibe { background: #d7baf8; }
.page-hero.custom { background: #ffcd9b; }
.page-section { padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 90px); border-bottom: 1px solid var(--ink); }
.page-section-inner { max-width: var(--max); margin: 0 auto; }
.page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 140px); }
.page-copy { max-width: 740px; }
.page-copy > p:first-child { margin-top: 0; font-size: 22px; line-height: 1.45; }
.deliverables { margin: 36px 0 0; border-top: 1px solid var(--ink); }
.deliverable { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--ink); }
.deliverable strong { font-size: 18px; }
.deliverable p { margin: 6px 0 0; color: var(--muted); }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.route-card { min-height: 330px; padding: 30px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; }
.route-card:nth-child(1) { background: #ffcd9b; }
.route-card:nth-child(2) { background: var(--orange); }
.route-card:nth-child(3) { background: #d7baf8; }
.route-card h3 { font-size: 35px; line-height: .98; letter-spacing: -.05em; margin: 0; }
.route-card p { font-size: 14px; }
.route-card span { align-self: flex-end; font-size: 26px; }
.platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.platforms span { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 13px; font-size: 12px; background: rgba(255,255,255,.22); }
.proof-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--paper); }
.proof-band > div { padding: clamp(70px, 8vw, 110px) clamp(22px, 6vw, 90px); }
.proof-band > div:first-child { border-right: 1px solid rgba(255,255,255,.25); }
.proof-band blockquote { margin: 0; font: clamp(31px, 4vw, 58px)/1.05 Georgia, serif; }
.proof-band p { color: #c9c9c2; }

@media (max-width: 900px) {
  .desktop-nav a:not(.nav-cta) { display: none; }
  .hero, .section-intro, .intelligence-grid, .split, .cta-grid, .page-grid, .proof-band { grid-template-columns: 1fr; }
  .hero-art { border-left: 0; border-top: 1px solid var(--ink); min-height: 430px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip > *:first-child { grid-column: 1 / -1; }
  .service-row { grid-template-columns: 44px 1fr auto; }
  .service-row p { grid-column: 2 / -1; }
  .intelligence-copy { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); padding: 30px 0 0; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item:nth-child(3) { grid-column: auto; }
  .split > div:first-child { border-right: 0; border-bottom: 1px solid var(--ink); }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 230px; }
  .proof-band > div:first-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
}

@media (max-width: 560px) {
  .site-header { height: 66px; padding: 0 18px; }
  .nav-cta { padding: 10px 13px; font-size: 12px; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 75px; }
  .hero h1, .page-hero h1 { font-size: clamp(48px, 15vw, 75px); }
  .hero-lead { font-size: 18px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > *:first-child { grid-column: auto; }
  .trust-strip > * { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-row { grid-template-columns: 32px 1fr auto; gap: 12px; }
  .service-row h3 { font-size: 30px; }
  .service-row .arrow { width: 34px; height: 34px; }
  .section-intro h2, .split h2, .cta-block h2, .page-section h2 { font-size: 44px; }
  .work-grid { display: block; }
  .site-footer { flex-direction: column; }
  .page-hero { min-height: 65vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ===== v4 homepage (Claude Design import) ===== */

body:has(.v4-header) {
  background: var(--v4-cream);
  color: var(--v4-ink);
  font-family: Inter, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  background-color: var(--v4-green-2);
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot.is-active { display: block; }
}

html:has(.v4-header) { overflow-x: hidden; max-width: 100%; }

.v4-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--v4-line);
  background: rgba(246, 241, 230, .9);
  backdrop-filter: blur(10px);
  min-width: 0;
}
.v4-brand, .v4-nav, .v4-nav-cta { min-width: 0; }
.v4-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--v4-ink);
}
.v4-brand-mark { width: 22px; height: 22px; flex: none; }
.v4-brand-mark path { fill: var(--v4-green); }
.v4-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; }
.v4-nav a { text-decoration: none; color: var(--v4-ink); }
.v4-nav a:not(.v4-nav-cta):hover { color: var(--v4-orange); }
.v4-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--v4-cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  background-color: var(--v4-green);
}

.v4-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 820px;
  background:
    radial-gradient(circle at 8% 10%, #f5c48c 0%, rgba(245, 196, 140, 0) 42%),
    radial-gradient(circle at 20% 55%, #f2a9c4 0%, rgba(242, 169, 196, 0) 45%),
    radial-gradient(circle at 6% 85%, #c3aef0 0%, rgba(195, 174, 240, 0) 45%),
    var(--v4-cream);
  overflow: hidden;
}
.v4-hero-inner { flex: 1; padding: 90px clamp(20px, 4vw, 64px) 40px; }
.v4-hero-card {
  position: relative;
  max-width: 640px;
  margin-left: 8%;
  background: #fff;
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 30px 60px -20px rgba(21, 23, 15, .25);
}
.v4-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 0 0 28px;
}
.v4-hero-lead { font-family: 'Source Serif 4', serif; font-size: 19px; margin: 0; line-height: 1.6; }
.v4-highlight { background: var(--v4-yellow); padding: .05em .15em; border-radius: 2px; }
.v4-hero-strip { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr); border-top: 1px solid var(--v4-line); }
.v4-hero-strip a {
  padding: 26px clamp(20px, 4vw, 64px);
  font-weight: 600;
  font-size: 15px;
  border-right: 1px solid rgba(21, 23, 15, .1);
  background: var(--v4-cream);
  color: var(--v4-ink);
  text-decoration: none;
}
.v4-hero-strip a:last-child { border-right: 0; }
.v4-hero-strip-cta { background: var(--v4-green) !important; color: #fff !important; }
.v4-hero-compact { min-height: auto; }
.v4-hero-compact .v4-hero-inner { padding-top: 56px; padding-bottom: 56px; }
.v4-page-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.v4-page-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--v4-body); }
.v4-page-list li::before { content: ""; width: 8px; height: 8px; margin-top: 6px; border-radius: 999px; background: var(--v4-green-2); flex: none; }

.v4-section { padding: clamp(60px, 10vw, 110px) clamp(20px, 4vw, 64px); }
.v4-section-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(30px, 6vw, 60px); margin: 0 auto 60px; max-width: var(--v4-max); }
.v4-section-intro h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 40px); line-height: 1.15; margin: 0; }
.v4-section-intro p { font-size: 17px; color: var(--v4-body); margin: 0; align-self: center; }
.v4-section-intro-center { grid-template-columns: minmax(0,1fr); max-width: 720px; text-align: center; }
.v4-section-intro-center p { justify-self: center; max-width: 560px; }

.v4-tile-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1.3fr); grid-auto-rows: 220px; gap: 16px; max-width: var(--v4-max); margin: 0 auto; }
.v4-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--v4-cream-2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
}
.v4-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 0; transition: transform .5s; }
.v4-tile-2 img { object-position: center center; }
.v4-tile-3 img { object-position: center 78%; }
.v4-tile-4 img { object-position: center 42%; }
.v4-tile-5 img { object-position: center 6%; }
.v4-tile-6 img { object-position: center 62%; }
.v4-tile:hover img { transform: scale(1.03); }
.v4-tile::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(21, 23, 15, .65) 0%, rgba(21, 23, 15, .1) 55%, rgba(21, 23, 15, .25) 100%); }
.v4-tile-label { position: relative; z-index: 2; color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; max-width: 80%; }
.v4-tile-desc {
  position: relative; z-index: 2; color: #fff;
  font-size: 13px; line-height: 1.45; max-width: 85%; margin-top: 8px;
  background: rgba(13, 23, 15, .55); backdrop-filter: blur(3px);
  padding: 7px 10px; border-radius: 8px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.v4-tile:hover .v4-tile-desc, .v4-tile:focus-within .v4-tile-desc { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .v4-tile-desc { opacity: 1; transform: translateY(0); }
}
.v4-tile-dark::before { background: linear-gradient(180deg, rgba(13, 54, 23, .75) 0%, rgba(13, 54, 23, .3) 55%, rgba(13, 54, 23, .45) 100%); }
.v4-tile-1 { grid-column: 1; grid-row: 1; }
.v4-tile-2 { grid-column: 2; grid-row: 1; }
.v4-tile-3 { grid-column: 3; grid-row: 1 / span 2; }
.v4-tile-4 { grid-column: 1 / span 2; grid-row: 2; }
.v4-tile-5 { grid-column: 1 / span 2; grid-row: 3; }
.v4-tile-6 { grid-column: 3; grid-row: 3; }

.v4-approach { background: var(--v4-green); color: var(--v4-cream); padding: clamp(60px, 10vw, 110px) clamp(20px, 4vw, 64px); }
.v4-approach-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 70px; max-width: var(--v4-max); margin: 0 auto; }
.v4-approach-left { display: flex; flex-direction: column; gap: 48px; }
.v4-approach h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 38px); line-height: 1.2; margin: 0; }
.v4-approach-photo { border-radius: 14px; overflow: hidden; max-width: 460px; aspect-ratio: 4/3; position: relative; }
.v4-approach-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13, 54, 23, .55) 0%, rgba(13, 54, 23, 0) 55%); }
.v4-approach-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.v4-approach h2 em { font-family: 'Source Serif 4', serif; font-style: italic; font-weight: 500; color: var(--v4-cream); }
.v4-approach-copy p { font-size: 17px; color: #cfe9d1; margin: 0 0 20px; }
.v4-signal-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.v4-signal-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.v4-signal-list li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--v4-green-2); flex: none; }

.v4-mosaic { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr); gap: 28px; max-width: var(--v4-max); margin: 0 auto; }
.v4-work-item { margin: 0; }
.v4-browser {
  display: block; background: #fff; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--v4-line); box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .3);
  transition: transform .25s ease; text-decoration: none;
}
.v4-browser:hover { transform: translateY(-4px); }
.v4-frame {
  height: 280px; background-repeat: no-repeat; background-size: 100% auto; background-position: 0% 0%;
  animation-name: v4ScrollFrame; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
.v4-browser:hover .v4-frame { animation-play-state: paused; }
.v4-browser .v4-frame.no-scroll { animation: none; background-position: 0% 100%; }
@keyframes v4ScrollFrame {
  0%, 10% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
  90%, 100% { background-position: 0% 0%; }
}
.v4-mosaic .v4-work-item:nth-child(3n-1) .v4-frame { animation-direction: reverse; }
@media (prefers-reduced-motion: reduce) {
  .v4-frame { animation: none; background-position: 0% 0%; }
}

.v4-about { background: var(--v4-cream-2); padding: clamp(60px, 10vw, 110px) clamp(20px, 4vw, 64px); }
.v4-steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; max-width: var(--v4-max); margin: 0 auto; }
.v4-step-item { position: relative; }
.v4-legs { position: absolute; bottom: -38px; left: 26px; pointer-events: none; z-index: 0; }
.v4-legs img { display: block; height: 56px; width: auto; }
.v4-step-item:nth-child(2) .v4-legs { left: auto; right: 24px; }
.v4-step-item:nth-child(3) .v4-legs { left: auto; right: 30px; }
.v4-step-item:nth-child(4) .v4-legs { left: auto; right: 26px; }
.v4-step-card { border-radius: 16px; padding: 28px; min-height: 170px; position: relative; z-index: 1; }
.v4-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  position: absolute; top: 20px; left: 20px;
}
.v4-step-icon { position: absolute; top: 18px; right: 20px; opacity: .9; transform: rotate(-6deg); }
.v4-ic { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.v4-step-card strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; display: block; margin: 44px 0 8px; }
.v4-step-card p { margin: 0; font-size: 14px; }
.v4-step-dark { background: var(--v4-ink); color: var(--v4-cream); }
.v4-step-dark .v4-step-num { background: #fff; color: var(--v4-ink); }
.v4-step-dark p { color: #cfd0c8; }
.v4-step-yellow { background: var(--v4-yellow); color: var(--v4-ink); }
.v4-step-yellow .v4-step-num { background: var(--v4-ink); color: var(--v4-yellow); }
.v4-step-yellow p { color: #5c5220; }
.v4-step-white { background: #fff; color: var(--v4-ink); border: 1px solid rgba(21, 23, 15, .18); }
.v4-step-white .v4-step-num { border: 1px solid var(--v4-ink); color: var(--v4-ink); }
.v4-step-white .v4-step-icon { color: #0a3b30; }
.v4-step-white p { color: var(--v4-muted); }
.v4-step-orange { background: var(--v4-orange); color: #fff; }
.v4-step-orange .v4-step-num { background: #fff; color: var(--v4-orange); }
.v4-step-orange p { color: #fbdcd0; }

.v4-faq-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,300px); gap: clamp(30px, 6vw, 70px); max-width: var(--v4-max); align-items: start; }
.v4-faq-grid-solo { grid-template-columns: minmax(0,1fr); max-width: 720px; margin: 0 auto; }
.v4-faq-list { display: flex; flex-direction: column; }
.v4-faq-list details { border-bottom: 1px solid var(--v4-line); padding: 22px 0; }
.v4-faq-list summary { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 17px; cursor: pointer; list-style: none; }
.v4-faq-list summary::-webkit-details-marker { display: none; }
.v4-faq-list details p { margin: 14px 0 0; font-size: 15px; color: var(--v4-body); }
.v4-faq-note { border-left: 1px solid var(--v4-line); padding: 4px 0 4px 32px; position: sticky; top: 140px; }
.v4-faq-quote { font-family: 'Source Serif 4', serif; font-style: italic; font-weight: 500; font-size: 22px; line-height: 1.4; color: var(--v4-ink); margin: 0 0 20px; }
.v4-faq-note-cta { display: inline-block; font-size: 14px; font-weight: 600; color: var(--v4-green); text-decoration: none; }
.v4-faq-note-cta:hover { color: var(--v4-orange); }

.v4-deliverables { display: flex; flex-direction: column; margin-top: 8px; }
.v4-deliverable { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--v4-line); }
.v4-deliverable:first-child { border-top: 1px solid var(--v4-line); }
.v4-deliverable span { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--v4-green); padding-top: 3px; }
.v4-deliverable strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.v4-deliverable p { margin: 0; font-size: 14.5px; color: var(--v4-body); }

.v4-quote-band { background: var(--v4-green); color: var(--v4-cream); padding: clamp(56px, 9vw, 100px) clamp(20px, 4vw, 64px); }
.v4-quote-band-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 60px; max-width: var(--v4-max); margin: 0 auto; align-items: center; }
.v4-quote-band blockquote { margin: 0; font-family: 'Source Serif 4', serif; font-style: italic; font-weight: 500; font-size: clamp(24px, 3vw, 32px); line-height: 1.35; }
.v4-quote-band-copy p { font-size: 16px; color: #cfe9d1; margin: 0 0 16px; }
.v4-quote-band-copy p:last-child { margin-bottom: 0; }
.v4-quote-band-copy a { color: var(--v4-cream); text-decoration-color: rgba(246,241,230,.5); }

.v4-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; max-width: var(--v4-max); margin: 0 auto; }
.v4-route-card { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; min-height: 220px; padding: 28px; border-radius: 16px; background: var(--v4-cream-2); text-decoration: none; color: var(--v4-ink); transition: transform .25s ease, background .25s ease; }
.v4-route-card:hover { transform: translateY(-4px); background: var(--v4-green); color: var(--v4-cream); }
.v4-route-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 21px; margin: 0 0 10px; }
.v4-route-card p { margin: 0; font-size: 14.5px; color: var(--v4-body); }
.v4-route-card:hover p { color: #cfe9d1; }
.v4-route-card span { align-self: flex-end; font-size: 20px; }

.v4-chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.v4-chip { border: 1px solid var(--v4-line); border-radius: 999px; padding: 7px 14px; font-size: 12px; font-weight: 500; }

.v4-contact { padding: clamp(60px, 10vw, 110px) clamp(20px, 4vw, 64px); }
.v4-contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 70px; max-width: var(--v4-max); margin: 0 auto; }
.v4-contact h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin: 0 0 20px; }
.v4-contact p { font-size: 17px; color: var(--v4-body); margin: 0 0 40px; max-width: 440px; }
.v4-contact-links { display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.v4-contact-links a { color: var(--v4-ink); text-decoration: none; font-weight: 500; }
.v4-contact-links a:hover { color: var(--v4-orange); }
.v4-contact-form { background: #fff; border: 1px solid var(--v4-line); border-radius: 18px; padding: 40px; display: flex; flex-direction: column; gap: 18px; }
.v4-contact-form label { font-size: 13px; font-weight: 600; display: flex; flex-direction: column; gap: 6px; color: var(--v4-ink); }
.v4-contact-form input, .v4-contact-form textarea {
  font: inherit; font-size: 15px; padding: 10px 12px;
  border: 1px solid rgba(21, 23, 15, .2); border-radius: 8px; background: var(--v4-cream);
}
.v4-contact-form button {
  font: inherit; font-weight: 600; font-size: 15px; cursor: pointer;
  background: var(--v4-green); color: var(--v4-cream);
  border: 0; padding: 16px; border-radius: 999px;
}
.v4-contact-form button:hover { background: var(--v4-ink); }

.v4-footer {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 32px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--v4-line);
  font-size: 14px; color: var(--v4-muted);
  background: var(--v4-cream);
}
.v4-footer a { color: var(--v4-muted); }
.v4-footer a:hover { color: var(--v4-orange); }

@media (max-width: 900px) {
  .v4-nav a:not(.v4-nav-cta) { display: none; }
  .v4-hero-card { margin-left: 0; }
  .v4-hero-strip { grid-template-columns: minmax(0,1fr); }
  .v4-section-intro, .v4-approach-grid, .v4-contact-grid, .v4-faq-grid, .v4-quote-band-grid { grid-template-columns: minmax(0,1fr); }
  .v4-faq-note { border-left: 0; border-top: 1px solid var(--v4-line); padding: 32px 0 0; margin-top: 8px; position: static; }
  .v4-route-grid { grid-template-columns: minmax(0,1fr); }
  .v4-tile-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .v4-tile-3 { grid-column: 1 / span 2; grid-row: auto; }
  .v4-tile-4, .v4-tile-5 { grid-column: 1 / span 2; }
  .v4-tile-6 { grid-column: 1 / span 2; }
  .v4-mosaic { grid-template-columns: minmax(0,1fr); }
  .v4-steps-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}

@media (max-width: 560px) {
  .v4-hero { min-height: auto; }
  .v4-hero-card { padding: 28px; }
  .v4-tile-grid { grid-template-columns: minmax(0,1fr); }
  .v4-tile-1, .v4-tile-2, .v4-tile-3, .v4-tile-4, .v4-tile-5, .v4-tile-6 { grid-column: 1; grid-row: auto; }
  .v4-steps-grid { grid-template-columns: minmax(0,1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot { display: none !important; }
}
