:root {
  --ink: #111315;
  --ink-2: #1d2325;
  --stone: #f4f1eb;
  --paper: #fbfaf7;
  --line: #d8d2c6;
  --muted: #68706d;
  --steel: #51616a;
  --sage: #5f7668;
  --copper: #b16f3c;
  --market: #8a3f2e;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 24, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 78px;
  padding: 1rem 4.5vw;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 68px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 12px 30px rgba(17, 19, 21, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 238px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.nav-active .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.nav-active .brand-logo-dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.94rem;
  font-weight: 650;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 3px;
  color: currentColor;
  border: 1px solid currentColor;
}

.language-switch span {
  opacity: 0.35;
}

.language-switch button {
  height: 28px;
  padding: 0 0.48rem;
  color: currentColor;
  background: transparent;
  border: 0;
  font-size: 0.76rem;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--copper);
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 0.72rem 1rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header:not(.is-scrolled):not(.nav-active) .nav-cta {
  background: rgba(255, 255, 255, 0.14);
}

.site-nav .nav-cta::after {
  content: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-toggle path,
.button svg path,
.icon-badge path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.86) 0%, rgba(17, 19, 21, 0.62) 38%, rgba(17, 19, 21, 0.12) 78%),
    linear-gradient(0deg, rgba(17, 19, 21, 0.68) 0%, rgba(17, 19, 21, 0.06) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(1120px, 91vw);
  margin: 0 auto;
  padding: 7.5rem 0 11rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b982;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.35rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 750;
}

h2 {
  max-width: 870px;
  margin-bottom: 1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  line-height: 1.14;
  font-weight: 750;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--copper);
  border-color: var(--copper);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 4.5vw;
  bottom: 2rem;
  left: 4.5vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: rgba(17, 19, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  padding: 1.15rem 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.2rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.section {
  padding: 6.8rem 0;
  background: var(--paper);
}

.section-light {
  background: var(--stone);
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.section-feature {
  color: var(--white);
  background: var(--market);
}

.section-feature .section-kicker {
  color: #ffd0a8;
}

.section-inner {
  width: min(1120px, 91vw);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading p,
.intro-copy,
.track-copy p,
.feature-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-ink .section-heading p,
.section-ink .track-copy p,
.section-feature p {
  color: rgba(255, 255, 255, 0.76);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
}

.section-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.section-media:hover img {
  transform: scale(1.025);
}

.intro-media {
  height: 460px;
}

.hero-content {
  animation: hero-rise 700ms 100ms both ease-out;
}

.hero-proof {
  animation: hero-rise 700ms 260ms both ease-out;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.expertise-card {
  min-height: 285px;
  padding: 1.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(17, 19, 21, 0.05);
}

.expertise-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.35rem;
  color: var(--copper);
  background: #f6e9dc;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 3rem;
  align-items: start;
}

.signal-panel {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-row span {
  color: rgba(255, 255, 255, 0.68);
}

.signal-row strong {
  text-align: right;
  font-size: 1.02rem;
}

.client-label {
  grid-column: 1 / -1;
  margin: 1rem 0 -2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.client-wall {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.client-logo {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 1.1rem;
  background: #f7f7f4;
}

.client-logo img {
  width: 100%;
  max-width: 230px;
  max-height: 62px;
  object-fit: contain;
}

.client-logo-featured {
  grid-column: 1 / -1;
}

.client-logo-featured img {
  max-height: 86px;
}

.asset-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.asset-intro {
  display: grid;
  gap: 2rem;
}

.asset-media {
  height: 330px;
}

.asset-list {
  display: grid;
  gap: 1rem;
}

.asset-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.asset-list article:first-child {
  padding-top: 0;
}

.asset-list article:last-child {
  border-bottom: 0;
}

.asset-list span {
  color: var(--copper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 750;
}

.asset-list h3,
.asset-list p {
  grid-column: 2;
}

.asset-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-steps article {
  min-height: 310px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.method-steps p {
  color: var(--muted);
}

.step-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 2.5rem;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 4.5rem;
  align-items: center;
}

.founder-media {
  height: 560px;
  overflow: hidden;
  background: #d9ddda;
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.founder-copy {
  max-width: 650px;
}

.founder-copy > p:not(.section-kicker):not(.founder-role) {
  color: var(--muted);
  font-size: 1.05rem;
}

.founder-role {
  margin-bottom: 1.8rem;
  color: var(--copper);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-link,
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.profile-link {
  margin-top: 0.8rem;
}

.profile-link svg,
.footer-linkedin svg {
  width: 22px;
  height: 22px;
}

.profile-link svg path,
.footer-linkedin svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-grid h2 {
  margin-bottom: 0;
}

.feature-grid p:last-child {
  margin-bottom: 0;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 4rem;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  color: var(--ink);
  font-weight: 750;
}

.contact-lines a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8f6f1;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 0.9rem;
}

.contact-form textarea {
  min-height: 132px;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(177, 111, 60, 0.16);
}

.form-submit {
  justify-self: start;
  margin-top: 0.2rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 4rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  color: var(--white);
}

.legal-details {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.legal-details > div {
  margin: 0;
}

.legal-details strong {
  color: var(--white);
}

.footer-brand .brand-logo {
  display: block;
  width: 245px;
}

.footer-intro p {
  max-width: 480px;
  margin: 1.4rem 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column > strong {
  margin-bottom: 0.35rem;
  color: var(--white);
}

.footer-linkedin {
  margin-top: 0.35rem;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

.footer-bottom strong {
  color: var(--white);
}

@media (max-width: 1050px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .expertise-grid,
  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .asset-grid,
  .contact-grid,
  .feature-grid,
  .intro-grid,
  .track-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
    padding: 0.8rem 1rem;
  }

  .brand-logo {
    width: 205px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 1rem 1rem;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.98);
    box-shadow: 0 18px 38px rgba(17, 19, 21, 0.14);
  }

  .site-header.nav-active .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 0.8rem;
    padding: 0.9rem 1rem;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 19, 21, 0.72) 0%, rgba(17, 19, 21, 0.62) 42%, rgba(17, 19, 21, 0.82) 100%),
      linear-gradient(90deg, rgba(17, 19, 21, 0.72) 0%, rgba(17, 19, 21, 0.16) 100%);
  }

  .hero-content {
    width: min(100% - 2rem, 1120px);
    padding: 7rem 0 2.25rem;
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 1120px);
    margin: 0 auto 1rem;
  }

  .hero-proof div {
    padding: 0.95rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-inner {
    width: min(100% - 2rem, 1120px);
  }

  .section-heading {
    text-align: left;
  }

  .intro-media {
    height: 360px;
  }

  .expertise-grid,
  .method-steps,
  .client-wall,
  .founder-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .client-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-grid {
    gap: 2rem;
  }

  .founder-media {
    height: 520px;
  }

  .legal-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .expertise-card,
  .method-steps article {
    min-height: auto;
  }

  .method-steps article {
    padding: 1.25rem;
  }

  .step-index {
    margin-bottom: 1.4rem;
  }

  .asset-list article {
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
  }

  .asset-list span {
    font-size: 1.55rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .footer-main {
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-content,
  .hero-proof,
  .reveal,
  .section-media img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.74rem;
  }

  .brand-logo {
    width: 158px;
  }

  .language-switch {
    height: 34px;
  }

  .language-switch button {
    height: 26px;
    padding: 0 0.35rem;
  }

  .client-wall {
    grid-template-columns: 1fr;
  }

  .founder-media {
    height: 430px;
  }
}
