:root {
  --ink: #14110f;
  --ink-soft: #2a2420;
  --paper: #f7f4f1;
  --paper-warm: #efe8e1;
  --white: #ffffff;
  --muted: #6b635c;
  --line: rgba(20, 17, 15, 0.1);
  --brand: #ef2d2f;
  --brand-deep: #c41f21;
  --accent: #f5842d;
  --accent-soft: rgba(245, 132, 45, 0.16);
  --shadow: 0 24px 60px rgba(20, 17, 15, 0.12);
  --radius: 4px;
  --header-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 241, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 244, 241, 0.96);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  z-index: 50;
}

.brand-logo {
  width: 10.5rem;
  height: auto;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 50;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: transform 240ms var(--ease), opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.55rem 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--brand);
}

.site-nav a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
.text-link:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Typography */
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.lead,
.page-lead {
  margin-top: 1.2rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.lead-flush {
  margin-top: 0;
}

.stack-gap {
  margin-top: 1rem;
}

.stack-gap-lg {
  margin-top: 1.25rem;
}

.actions-flush {
  margin-top: 0.25rem;
}

.muted {
  color: var(--muted);
}

.max-prose {
  max-width: 38rem;
}

.max-prose-wide {
  max-width: 40rem;
}

/* Buttons */
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 200ms var(--ease), background 200ms ease, color 200ms ease,
    border-color 200ms ease, box-shadow 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, #f04a2f 55%, var(--accent) 100%);
  box-shadow: 0 14px 32px rgba(239, 45, 47, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(239, 45, 47, 0.34);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(20, 17, 15, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
}

.button-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  transition: gap 200ms var(--ease);
}

.text-link::after {
  content: "→";
  transition: transform 200ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

/* Home hero — full-bleed composition */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 11, 0.92) 0%, rgba(15, 12, 11, 0.72) 48%, rgba(15, 12, 11, 0.35) 100%),
    linear-gradient(180deg, rgba(15, 12, 11, 0.2) 0%, rgba(15, 12, 11, 0.75) 100%);
}

.hero-home .container {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  padding: 5rem 0 4.5rem;
}

.brand-mark {
  margin: 0 0 1.1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.hero-home h1 {
  max-width: 14ch;
}

.hero-home .lead {
  color: rgba(247, 244, 241, 0.78);
}

.hero-home .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-home .button-secondary:hover,
.hero-home .button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Page heroes */
.page-hero {
  position: relative;
  padding: 4.5rem 0 2.5rem;
  overflow: clip;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(245, 132, 45, 0.18), transparent 42%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.page-hero-shell {
  max-width: 42rem;
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3.25rem 0;
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.section-ink .eyebrow {
  color: var(--accent);
}

.section-ink .muted,
.section-ink .lead {
  color: rgba(247, 244, 241, 0.72);
}

.section-warm {
  background: var(--paper-warm);
}

.section-heading {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-heading p:last-child {
  margin-top: 0.9rem;
  color: var(--muted);
}

/* Position band — no cards */
.position-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.position-band article {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--line);
}

.position-band article:last-child {
  border-right: 0;
}

.position-band h3 {
  margin-bottom: 0.55rem;
}

.position-band p {
  color: var(--muted);
  max-width: 26ch;
}

/* Split layouts */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: start;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split p + p {
  margin-top: 1rem;
  color: var(--muted);
}

.split .lead + p,
.prose p + p {
  margin-top: 1rem;
}

.prose p {
  color: var(--muted);
  max-width: 40rem;
}

.rule {
  width: 3rem;
  height: 3px;
  margin: 1.25rem 0 1.5rem;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

/* Values / reasons — open layout, not heavy cards */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.75rem;
}

.reason-grid article {
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
}

.reason-grid .index {
  display: block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reason-grid h3 {
  margin-bottom: 0.55rem;
}

.reason-grid p {
  color: var(--muted);
}

/* Service detail blocks */
.service-stack {
  display: grid;
  gap: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.service-block:first-child {
  border-top: 1px solid var(--line);
}

.service-block .index {
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-block h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.service-block > div > p {
  max-width: 40rem;
  color: var(--muted);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  margin-top: 1.5rem;
}

.deliverables li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  padding-top: 2.5rem;
  counter-increment: step;
}

.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-steps strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.process-steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Founder / quote */
.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}

.theme-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.theme-list li {
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}

.theme-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Space Grotesk", sans-serif;
}

.theme-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2.25rem;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 132, 45, 0.35), transparent 45%),
    linear-gradient(160deg, #1f1614 0%, #14110f 100%);
}

.quote-panel blockquote {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.quote-signoff {
  margin-top: 2rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.quote-role {
  display: block;
  margin-top: 0.25rem;
  color: rgba(247, 244, 241, 0.65);
  font-size: 0.92rem;
}

/* CTA */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
}

.cta-band h2 {
  max-width: 18ch;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(20, 17, 15, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}

.form-note,
.form-status {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #1f6b3a;
}

.form-status[data-state="error"] {
  color: var(--brand-deep);
}

.contact-aside {
  padding: 2rem;
  background: var(--ink);
  color: var(--white);
}

.contact-aside .eyebrow {
  color: var(--accent);
}

.contact-aside h2 {
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.contact-aside p {
  color: rgba(247, 244, 241, 0.72);
}

.contact-meta {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Space Grotesk", sans-serif;
}

.contact-meta a {
  color: var(--accent);
  font-weight: 700;
}

.contact-meta a:hover,
.contact-meta a:focus-visible {
  color: var(--white);
}

/* Legal */
.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.35rem;
}

.legal-content p + p {
  margin-top: 1rem;
}

.legal-content p {
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  color: rgba(247, 244, 241, 0.7);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand span {
  display: block;
  margin-top: 0.45rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-blurb {
  margin-top: 1rem;
  max-width: 28rem;
}

.service-block .suitability {
  margin-top: 1rem;
  max-width: 40rem;
  color: var(--muted);
}

.button-row.flush {
  margin-top: 0;
}

.footer-grid h3 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-home .brand-mark,
.hero-home h1,
.hero-home .lead,
.hero-home .hero-actions {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 900ms var(--ease) forwards;
}

.hero-home h1 {
  animation-delay: 120ms;
}

.hero-home .lead {
  animation-delay: 220ms;
}

.hero-home .hero-actions {
  animation-delay: 320ms;
}

.hero-media img {
  animation: kenburns 18s ease-out forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-home .brand-mark,
  .hero-home h1,
  .hero-home .lead,
  .hero-home .hero-actions,
  .hero-media img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .position-band,
  .reason-grid,
  .split,
  .split-reverse,
  .founder-grid,
  .contact-layout,
  .footer-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .position-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .position-band article:last-child {
    border-bottom: 0;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .deliverables {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-home {
    min-height: 85vh;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 6rem 2rem 2rem;
    background: rgba(20, 17, 15, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    color: rgba(247, 244, 241, 0.8);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .site-nav a.is-active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--accent);
  }

  .brand-logo {
    width: 8.5rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-home .container,
  .page-hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .quote-panel,
  .contact-aside {
    padding: 1.6rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

