@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-600-italic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --primary: #3e53e0;
  --primary-dark: #2e40bd;
  --primary-deep: #243293;
  --primary-soft: #eef0ff;
  --ink: #18202c;
  --ink-2: #1e2735;
  --text: #202733;
  --text-muted: #626b77;
  --background: #ffffff;
  --surface: #f5f6f8;
  --surface-blue: #f4f6ff;
  --border: #dfe3e8;
  --white: #ffffff;
  --success: #1d6a50;
  --error: #a83a3a;
  --container: 1220px;
  --shadow: 0 22px 60px rgba(12, 20, 33, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--background);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #9aa8ff;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--primary);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 6.15rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  font-weight: 650;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 650;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--primary);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #b9c2ff;
}

.accent-serif {
  color: #dce1ff;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.section {
  padding-block: clamp(78px, 9vw, 132px);
}

.section-sm {
  padding-block: clamp(58px, 7vw, 88px);
}

.section-muted {
  background: var(--surface);
}

.section-blue-soft {
  background: var(--surface-blue);
}

.section-dark {
  color: #c9d0da;
  background: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 78px);
}

.section-head h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.section-dark .section-head p {
  color: #aeb7c3;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.btn::after {
  content: "↗";
  font-size: 1.05em;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-light:hover {
  background: #edf0ff;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--primary);
  font-weight: 700;
  transition: gap 220ms var(--ease), color 220ms ease;
}

.text-link::after {
  content: "↗";
}

.text-link:hover {
  gap: 15px;
  color: var(--primary-dark);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: rgba(24, 32, 44, 0.24);
  transition: background 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.site-header.scrolled {
  border-color: transparent;
  background: rgba(21, 28, 39, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo-link img {
  width: 224px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 38px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
}

.nav-links a {
  position: relative;
  padding-block: 11px;
  color: #e2e6ec;
  font-weight: 600;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: #8c9aff;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: 88px 0 0;
  display: none;
  padding: 34px 24px;
  color: var(--white);
  background: var(--ink);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a:not(.btn) {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 28px;
}

/* Hero */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 168px 0 88px;
  color: #c6ced8;
  background: var(--ink);
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  top: -35%;
  right: 2%;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(62, 83, 224, 0.035), 0 0 0 180px rgba(62, 83, 224, 0.025);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.home-hero h1,
.page-hero h1 {
  color: var(--white);
}

.home-hero h1 {
  max-width: 760px;
}

.hero-copy > p {
  max-width: 680px;
  margin-bottom: 38px;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 170px 4px 4px 4px;
  background: #252c37;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 31, 42, 0.05), rgba(21, 29, 44, 0.5));
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: -28px;
  bottom: 28px;
  z-index: 2;
  width: min(310px, 78%);
  padding: 26px;
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.27rem;
  line-height: 1.3;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 186px 0 108px;
  color: #c5cdd7;
  background: var(--ink);
}

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

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

/* Home sections */
.expertise-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 13px;
  padding: 22px 28px;
  border-left: 1px solid var(--border);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.expertise-list li:last-child {
  border-right: 1px solid var(--border);
}

.expertise-list span {
  color: var(--primary);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: clamp(54px, 8vw, 120px);
}

.positioning-copy p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.18rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.principle {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.principle span {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.principle h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.principle p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 365px;
  flex-direction: column;
  padding: 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: color 280ms ease, background 280ms ease, transform 280ms var(--ease), box-shadow 280ms ease;
}

.service-card:hover {
  z-index: 1;
  color: #d8deea;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-number {
  margin-bottom: 70px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 16px;
  transition: color 280ms ease;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--text-muted);
  transition: color 280ms ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .text-link {
  color: var(--white);
}

.service-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
}

.split-feature-media {
  min-height: 620px;
  overflow: hidden;
}

.split-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.split-feature-copy {
  padding: clamp(56px, 7vw, 105px);
  background: var(--surface-blue);
}

.split-feature-copy > p {
  max-width: 630px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid #d9def4;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 650;
}

.check-list li::before {
  color: var(--primary);
  content: "✓";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.process-step {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.process-step span {
  display: block;
  margin-bottom: 80px;
  color: #9cabff;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.process-step h3 {
  margin-bottom: 14px;
}

.process-step p {
  margin-bottom: 0;
  color: #aeb7c3;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.founder-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 520px;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  background: var(--primary);
}

.founder-placeholder::before,
.founder-placeholder::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.founder-placeholder::before {
  width: 350px;
  height: 350px;
  top: -115px;
  right: -100px;
}

.founder-placeholder::after {
  width: 230px;
  height: 230px;
  bottom: -85px;
  left: -65px;
}

.founder-placeholder strong {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -0.08em;
}

.founder-copy > p {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.founder-meta {
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-meta strong,
.founder-meta span {
  display: block;
}

.founder-meta strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.founder-meta span {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 9vw, 120px);
  color: #e6e9ff;
  background: var(--primary);
}

.cta-band::after {
  position: absolute;
  top: -55%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.04), 0 0 0 180px rgba(255, 255, 255, 0.03);
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
}

.cta-band h2 {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-band p {
  max-width: 750px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* About and content pages */
.story-grid,
.perspective-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.story-copy,
.perspective-copy {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.story-copy p:first-child {
  color: var(--ink);
  font-size: 1.3rem;
}

.relationship-flow {
  display: grid;
  gap: 0;
}

.relationship-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 27px 0;
  border-top: 1px solid var(--border);
}

.relationship-item:last-child {
  border-bottom: 1px solid var(--border);
}

.relationship-item span {
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.relationship-item h3 {
  margin-bottom: 8px;
}

.relationship-item p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 280px;
  padding: 32px;
  border-top: 3px solid var(--primary);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(12, 20, 33, 0.055);
}

.value-card span {
  display: block;
  margin-bottom: 58px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.value-card p {
  color: var(--text-muted);
}

/* Services page */
.service-detail {
  display: grid;
  grid-template-columns: 95px minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(46px, 6vw, 76px) 0;
  border-top: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--border);
}

.service-detail > span {
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-detail h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.service-detail-copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.service-detail-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.service-detail-copy li {
  position: relative;
  padding-left: 20px;
}

.service-detail-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

/* Contact */
.contact-grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.contact-details {
  position: sticky;
  top: 120px;
}

.contact-list {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.contact-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
}

.contact-form {
  padding: clamp(30px, 5vw, 58px);
  background: var(--surface);
}

.form-honey {
  display: none !important;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfd4da;
  border-radius: 0;
  color: var(--text);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(62, 83, 224, 0.16);
}

.form-note {
  margin: 22px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: var(--error);
  color: #772929;
  background: #fff0f0;
}

.form-status.is-success {
  border-color: var(--success);
  color: #14513d;
  background: #ebf7f1;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  gap: clamp(50px, 8vw, 110px);
  justify-content: center;
}

.legal-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}

.legal-nav strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--text-muted);
}

.legal-nav a:hover {
  color: var(--primary);
}

.legal-content h2 {
  margin: 54px 0 18px;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: -0.03em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-review {
  margin-bottom: 40px;
  padding: 22px 24px;
  border-left: 4px solid var(--primary);
  background: var(--primary-soft);
}

.legal-review strong {
  color: var(--ink);
}

/* Footer */
.site-footer {
  color: #aeb7c3;
  background: #101720;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(38px, 6vw, 82px);
  padding-block: 78px 64px;
}

.footer-brand img {
  width: 244px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 390px;
}

.footer-col h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 10px;
}

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

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

.footer-bottom p {
  margin: 0;
}

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

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { transition-delay: 90ms; }
[data-delay="2"] { transition-delay: 180ms; }
[data-delay="3"] { transition-delay: 270ms; }

/* Responsive */
@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; }
  .hero-copy { max-width: 840px; }
  .hero-visual { min-height: 560px; }
  .hero-note { right: 22px; }
  .expertise-list { grid-template-columns: repeat(2, 1fr); }
  .expertise-list li:nth-child(3) { border-top: 1px solid var(--border); }
  .expertise-list li:nth-child(4) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .positioning-grid,
  .founder-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 68px 0.7fr 1fr; }
  .footer-main { grid-template-columns: 1.3fr repeat(2, 0.7fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .nav-wrap { min-height: 76px; }
  .logo-link img { width: 186px; }
  .mobile-menu { top: 76px; }
  .home-hero { padding: 138px 0 68px; }
  .page-hero { padding: 150px 0 82px; }
  .home-hero h1 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .hero-visual { min-height: 430px; }
  .hero-image-wrap { border-radius: 100px 3px 3px 3px; }
  .hero-note { right: 14px; bottom: 14px; padding: 20px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .expertise-list { grid-template-columns: 1fr; }
  .expertise-list li { min-height: 78px; border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .expertise-list li:first-child { border-top: 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .principles,
  .services-grid,
  .process-grid,
  .values-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-number { margin-bottom: 50px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature-media { min-height: 410px; }
  .split-feature-copy { padding: 56px 24px; }
  .process-step { min-height: 260px; }
  .process-step span { margin-bottom: 54px; }
  .founder-placeholder { min-height: 410px; }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-grid .btn { width: 100%; }
  .story-grid,
  .perspective-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 48px 1fr; }
  .service-detail-copy { grid-column: 2; }
  .service-detail-copy ul { grid-template-columns: 1fr; }
  .contact-details { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom-links { flex-wrap: wrap; }
}

@media (max-width: 440px) {
  .logo-link img { width: 168px; }
  .hero-visual { min-height: 365px; }
  .hero-note { width: calc(100% - 28px); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-main .footer-col:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
