:root {
  --ink: #111315;
  --ink-soft: #1a1f22;
  --navy: #172832;
  --steel: #60717a;
  --gold: #b98b48;
  --gold-soft: #ddc891;
  --paper: #f4f1ea;
  --paper-deep: #e7e0d2;
  --white: #fbfaf7;
  --muted: #687078;
  --sage: #737b6c;
  --line: rgba(17, 19, 21, 0.12);
  --dark-line: rgba(251, 250, 247, 0.14);
  --shadow: 0 26px 70px rgba(10, 12, 15, 0.2);
  --radius: 8px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 54%, #efebe3 100%),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

.home-editorial {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f4f1ea 52%, #ebe4d8 100%),
    var(--paper);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

@media (min-width: 1440px) {
  .section-shell {
    width: min(1240px, calc(100% - 64px));
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(251, 250, 247, 0.12);
  background: rgba(17, 19, 21, 0.68);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.home-editorial .site-header {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  box-shadow: 0 12px 38px rgba(17, 19, 21, 0.08);
}

.home-editorial .site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.96);
  border-color: rgba(17, 19, 21, 0.1);
  box-shadow: 0 14px 44px rgba(17, 19, 21, 0.1);
}

.home-editorial .brand-mark small,
.home-editorial .site-nav {
  color: rgba(17, 19, 21, 0.64);
}

.home-editorial .site-nav a:hover,
.home-editorial .site-nav a:focus-visible,
.home-editorial .site-nav a.is-active {
  color: var(--ink);
}

.home-editorial .nav-toggle {
  border-color: rgba(17, 19, 21, 0.14);
  background: rgba(17, 19, 21, 0.04);
}

.home-editorial .nav-toggle span {
  background: var(--ink);
}

.site-header.is-scrolled {
  background: rgba(17, 19, 21, 0.94);
  border-color: rgba(251, 250, 247, 0.1);
  box-shadow: 0 14px 44px rgba(10, 12, 15, 0.22);
}

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

.brand-logo-wrap {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-navbar-logo {
  width: 214px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-mark small {
  color: rgba(251, 250, 247, 0.66);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(251, 250, 247, 0.72);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding-block: 9px;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
}

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

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  width: 240px;
  padding: 10px;
  border: 1px solid rgba(251, 250, 247, 0.12);
  border-radius: 8px;
  background: rgba(17, 19, 21, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(251, 250, 247, 0.72);
  font-size: 0.86rem;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(251, 250, 247, 0.08);
  color: var(--white);
}

.nav-dropdown a::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(251, 250, 247, 0.18);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.07);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 84vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 48px) 0 54px;
  color: var(--white);
  background: var(--ink-soft);
}

.editorial-hero {
  padding: calc(var(--header-height) + 50px) 0 56px;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 1) 0%, rgba(244, 241, 234, 0.92) 58%, rgba(231, 224, 210, 0.82) 100%),
    var(--paper);
}

.editorial-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.editorial-hero-copy {
  max-width: 760px;
}

.editorial-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4.45rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.editorial-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.dark-text {
  color: var(--ink);
  border-color: rgba(17, 19, 21, 0.18);
  background: rgba(251, 250, 247, 0.5);
}

.editorial-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: #d8d0c2;
  box-shadow: 0 28px 80px rgba(17, 19, 21, 0.18);
}

.editorial-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.visual-note {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 16px;
  border: 1px solid rgba(251, 250, 247, 0.32);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.12);
}

.visual-note-top {
  top: 24px;
  right: 24px;
}

.visual-note-bottom {
  left: 24px;
  bottom: 24px;
}

.visual-note span {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.visual-note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.operating-strip {
  padding: 18px 0;
  background: var(--ink);
}

.operating-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 247, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.1);
}

.operating-strip article {
  min-height: 142px;
  padding: 22px;
  color: var(--white);
  background: #171a1c;
}

.formal-icon {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 36px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--ink);
  background: #e3d4aa;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.operating-strip h2,
.service-editorial-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.16;
}

.operating-strip p {
  margin: 0;
  color: rgba(251, 250, 247, 0.66);
  font-size: 0.88rem;
}

.editorial-intro {
  background: #fbfaf7;
}

.editorial-split,
.image-led-layout,
.quiet-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: center;
}

.image-led-section {
  background:
    linear-gradient(180deg, #f4f1ea, #ebe4d8),
    var(--paper);
}

.image-panel {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 19, 21, 0.16);
}

.image-panel img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.image-led-copy h2,
.quiet-cta-layout h2,
.editorial-split h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.quiet-list {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quiet-list p {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: rgba(251, 250, 247, 0.82);
}

.quiet-list span {
  color: var(--gold);
  font-weight: 900;
}

.service-editorial {
  background: #fbfaf7;
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-editorial-grid article {
  min-height: 265px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(244, 241, 234, 0.82)),
    var(--white);
}

.service-editorial-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.quiet-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 40, 50, 0.96), rgba(17, 19, 21, 0.96)),
    var(--ink);
}

.quiet-cta-layout {
  align-items: center;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/operations-command-center.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.9) 0%, rgba(17, 19, 21, 0.76) 44%, rgba(23, 40, 50, 0.38) 78%, rgba(17, 19, 21, 0.58) 100%),
    linear-gradient(180deg, rgba(17, 19, 21, 0.16) 0%, rgba(17, 19, 21, 0.76) 100%);
}

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

.eyebrow,
.section-kicker,
.work-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.contact-copy h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5.25vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1100px;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(251, 250, 247, 0.78);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #d7bd7b, var(--gold));
  border-color: var(--gold);
}

.button-secondary {
  color: var(--white);
  background: rgba(251, 250, 247, 0.06);
  border-color: rgba(251, 250, 247, 0.2);
}

.button-secondary.dark-text {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.82);
  border-color: rgba(17, 19, 21, 0.22);
}

.hero-metrics {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 156px));
  gap: 1px;
  max-width: 100%;
  margin: 34px 0 0;
  padding: 1px;
  background: rgba(251, 250, 247, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.hero-metrics div {
  min-height: 84px;
  padding: 16px;
  background: rgba(17, 19, 21, 0.56);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  color: var(--gold-soft);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(251, 250, 247, 0.68);
  font-size: 0.85rem;
  line-height: 1.35;
}

.page-main {
  padding-top: var(--header-height);
}

.page-hero {
  padding: 96px 0;
}

.page-hero-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 40, 50, 0.94), rgba(17, 19, 21, 0.98)),
    var(--ink);
}

.page-hero-light {
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--white), var(--paper-deep)),
    var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 72px;
  align-items: end;
}

.page-hero p:last-child {
  margin: 0;
  color: rgba(251, 250, 247, 0.68);
  font-size: 1.08rem;
}

.page-hero-light p:last-child {
  color: var(--muted);
}

.trust-note {
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(251, 250, 247, 0.12);
  color: rgba(251, 250, 247, 0.62) !important;
  font-size: 0.92rem !important;
}

.intro-section {
  padding: 68px 0;
  background: #fbfaf7;
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.split-layout,
.meaning-layout,
.vision-layout,
.industries-layout,
.systems-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: start;
}

.intro-copy,
.text-stack {
  display: grid;
  gap: 18px;
}

.intro-logo {
  width: min(460px, 100%);
  aspect-ratio: 1160 / 760;
  object-fit: cover;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(17, 19, 21, 0.12);
}

.meaning-logo img {
  width: min(520px, 100%);
  aspect-ratio: 1160 / 760;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-grid h2,
.section-heading h2,
.text-stack h2,
.vision-layout h2,
.meaning-layout h2,
.founder-card h2,
.cta-layout h2,
.contact-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid p,
.text-stack p,
.section-heading p,
.feature-card p,
.service-card p,
.package-card p,
.systems-steps p,
.work-item p,
.contact-copy p {
  color: var(--muted);
}

.text-stack p,
.intro-grid p {
  margin: 0;
  font-size: 1.03rem;
}

.text-link {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 1px solid var(--gold);
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 680px;
}

.wide-heading {
  max-width: 840px;
  margin-bottom: 40px;
}

.wide-heading p {
  max-width: 760px;
  margin-top: 20px;
}

.split-section,
.experience-section {
  background: var(--paper);
}

.services-section,
.packages-section,
.vision-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 40, 50, 0.92), rgba(17, 19, 21, 0.98)),
    var(--ink);
}

.services-section .section-heading p,
.services-section .feature-card p,
.packages-section .section-heading p,
.packages-section .package-card p,
.vision-section .text-stack p {
  color: rgba(251, 250, 247, 0.68);
}

.services-section .text-link,
.packages-section .text-link,
.vision-section .text-link {
  color: var(--white);
}

.feature-grid,
.services-grid,
.package-grid,
.work-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-grid,
.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.package-card,
.work-item {
  border-radius: var(--radius);
}

.feature-card,
.service-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  background: rgba(251, 250, 247, 0.045);
}

.light-card {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fbfaf7;
}

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

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 34px;
  color: var(--gold-soft);
  border: 1px solid rgba(185, 139, 72, 0.48);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.light-card .service-index {
  color: var(--navy);
  background: #e5d3a6;
}

.feature-card h3,
.service-card h3,
.package-card h3,
.systems-steps h3,
.work-item h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-card p,
.service-card p,
.package-card p,
.systems-steps p,
.work-item p {
  margin: 0;
  font-size: 0.94rem;
}

.founder-preview {
  background:
    linear-gradient(135deg, #fbfaf7, var(--paper-deep)),
    var(--paper);
}

.founder-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.founder-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.78);
}

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

.principles-panel,
.experience-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.principles-panel span,
.experience-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--navy);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.experience-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.systems-section {
  background: #fbfaf7;
}

.systems-steps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.systems-steps article {
  display: grid;
  grid-template-columns: 116px minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  background: #fbfaf7;
}

.systems-steps span {
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-list li {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--navy);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.work-section,
.services-catalog {
  background: #fbfaf7;
}

.work-item {
  min-height: 270px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(23, 40, 50, 0.92), rgba(17, 19, 21, 0.96)),
    var(--ink);
  box-shadow: 0 22px 56px rgba(17, 19, 21, 0.18);
}

.work-item p {
  color: rgba(251, 250, 247, 0.66);
}

.work-item .work-label {
  color: var(--gold-soft);
}

.package-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  background: rgba(251, 250, 247, 0.045);
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.96), rgba(23, 40, 50, 0.94)),
    var(--ink);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-layout h2 {
  max-width: 760px;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.96), rgba(23, 40, 50, 0.94)),
    var(--ink);
}

.standalone-contact {
  min-height: calc(100vh - var(--header-height));
  padding: 104px 0;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  align-items: start;
}

.contact-copy p {
  max-width: 590px;
  color: rgba(251, 250, 247, 0.68);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(251, 250, 247, 0.16);
  border-radius: 8px;
  color: var(--gold-soft);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(251, 250, 247, 0.14);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.055);
}

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

.contact-form span {
  color: rgba(251, 250, 247, 0.68);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(251, 250, 247, 0.08);
  border: 1px solid rgba(251, 250, 247, 0.16);
  border-radius: 8px;
  outline: none;
}

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 139, 72, 0.18);
}

.contact-form option {
  color: var(--ink);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.form-trust-note {
  margin: 0 0 2px;
  padding: 12px 14px;
  border: 1px solid rgba(221, 200, 145, 0.22);
  border-radius: 8px;
  color: rgba(251, 250, 247, 0.72);
  background: rgba(221, 200, 145, 0.07);
  font-size: 0.86rem;
}

.site-footer {
  padding: 28px 0;
  color: rgba(251, 250, 247, 0.62);
  background: #101214;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout p {
  margin: 0;
}

.footer-brand img {
  width: 142px;
  height: 18px;
  object-fit: contain;
  object-position: left center;
}

.concept-body {
  background: #101214;
}

.concept-hero {
  padding: 96px 0 54px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.98), rgba(23, 40, 50, 0.94)),
    var(--ink);
}

.concept-hero-grid,
.recommendation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: end;
}

.concept-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.concept-hero p:last-child {
  margin: 0;
  color: rgba(251, 250, 247, 0.68);
  font-size: 1.08rem;
}

.concept-showcase {
  display: grid;
  gap: 1px;
  background: rgba(251, 250, 247, 0.12);
}

.concept-panel {
  position: sticky;
  top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  min-height: calc(100vh - var(--header-height));
  color: var(--white);
  background: var(--ink-soft);
}

.concept-image {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.12), rgba(17, 19, 21, 0.72)),
    var(--concept-image);
  background-position: center;
  background-size: cover;
}

.concept-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.96), rgba(23, 40, 50, 0.94)),
    var(--ink);
}

.concept-number {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concept-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.concept-content p:not(.concept-number) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(251, 250, 247, 0.68);
  font-size: 1rem;
}

.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.concept-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(185, 139, 72, 0.34);
  border-radius: 8px;
  color: var(--gold-soft);
  font-weight: 900;
  font-size: 0.86rem;
}

.concept-recommendation {
  color: var(--ink);
  background:
    linear-gradient(135deg, #fbfaf7, var(--paper-deep)),
    var(--paper);
}

.challenges-section {
  background: #fbfaf7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.challenge-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.challenge-grid article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.96), rgba(244, 241, 234, 0.84)),
    var(--white);
}

.challenge-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 28px;
  padding: 0 10px;
  color: var(--navy);
  background: #e5d3a6;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 900;
}

.challenge-grid h3,
.artifact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.challenge-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.proof-section {
  background:
    linear-gradient(135deg, rgba(23, 40, 50, 0.95), rgba(17, 19, 21, 0.98)),
    var(--ink);
  color: var(--white);
}

.proof-section .section-heading p {
  color: rgba(251, 250, 247, 0.66);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artifact-card {
  min-height: 286px;
  padding: 22px;
  border: 1px solid rgba(251, 250, 247, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.08), rgba(251, 250, 247, 0.035)),
    rgba(251, 250, 247, 0.04);
  box-shadow: 0 24px 60px rgba(10, 12, 15, 0.2);
}

.artifact-card.tall {
  min-height: 330px;
}

.artifact-topline {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  margin-bottom: 22px;
}

.artifact-topline span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(221, 200, 145, 0.12);
}

.artifact-topline strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.artifact-metrics,
.artifact-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.artifact-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artifact-metrics b,
.artifact-dashboard em {
  min-height: 46px;
  padding: 10px;
  border: 1px solid rgba(251, 250, 247, 0.12);
  border-radius: 8px;
  color: rgba(251, 250, 247, 0.74);
  background: rgba(251, 250, 247, 0.055);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.artifact-bars {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.artifact-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #d7bd7b, rgba(115, 123, 108, 0.92)),
    var(--gold);
}

.artifact-card p {
  margin: 0;
  color: rgba(251, 250, 247, 0.66);
  font-size: 0.9rem;
}

.methodology-section {
  background:
    linear-gradient(180deg, #f4f1ea, #e8e0d2),
    var(--paper);
}

.portfolio-visual-section {
  background:
    linear-gradient(180deg, #fbfaf7, #f0ebe2),
    var(--paper);
}

.dashboard-proof-section {
  background:
    linear-gradient(180deg, #f7f5ef, #ebe4d8),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dashboard-preview-grid,
.dashboard-gallery {
  display: grid;
  gap: 18px;
}

.dashboard-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-preview-grid article,
.dashboard-gallery article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.86);
  box-shadow:
    0 11px 0 -8px rgba(185, 139, 72, 0.3),
    0 24px 62px rgba(17, 19, 21, 0.12);
}

.dashboard-preview-grid img,
.dashboard-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
}

.dashboard-preview-grid article > div,
.dashboard-gallery article > div {
  position: relative;
  padding: 22px 24px 24px;
}

.dashboard-preview-grid article > div::before,
.dashboard-gallery article > div::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 64px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.dashboard-preview-grid span,
.dashboard-gallery span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(229, 211, 166, 0.6);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-preview-grid h3,
.dashboard-gallery h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.dashboard-preview-grid p,
.dashboard-gallery p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.portfolio-visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 62px;
  align-items: center;
}

.portfolio-visual-layout.reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.92fr);
}

.portfolio-visual-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.portfolio-visual-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.portfolio-visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: #1a1f22;
  box-shadow: 0 26px 70px rgba(17, 19, 21, 0.18);
}

.portfolio-visual-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.portfolio-visual-card figcaption {
  padding: 14px 16px;
  color: rgba(251, 250, 247, 0.62);
  background: #111315;
  font-size: 0.82rem;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(229, 211, 166, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
}

.methodology-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 68px;
  align-items: start;
}

.methodology-steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.methodology-steps article {
  display: grid;
  grid-template-columns: 116px minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: rgba(251, 250, 247, 0.82);
}

.methodology-steps span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.methodology-steps h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.methodology-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.deliverable-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(229, 211, 166, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-editorial-grid article {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-editorial-grid article:hover,
.service-editorial-grid article:focus-within,
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(185, 139, 72, 0.42);
  box-shadow: 0 22px 54px rgba(17, 19, 21, 0.1);
}

.contact-prompts {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
}

.contact-prompts span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(251, 250, 247, 0.14);
  border-radius: 8px;
  color: rgba(251, 250, 247, 0.74);
  background: rgba(251, 250, 247, 0.055);
  font-size: 0.9rem;
  font-weight: 800;
}

.conversion-hero {
  padding: calc(var(--header-height) + 54px) 0 42px;
  background:
    linear-gradient(135deg, #fbfaf7 0%, #f4f1ea 58%, #e9e1d3 100%),
    var(--paper);
}

.conversion-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 54px;
  align-items: center;
}

.conversion-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 6.2vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.conversion-hero-copy > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-proof-panel {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: #101214;
  box-shadow: 0 28px 80px rgba(17, 19, 21, 0.16);
}

.hero-proof-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.hero-proof-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: rgba(251, 250, 247, 0.72);
  background: #101214;
}

.hero-proof-caption span {
  color: var(--gold-soft);
  font-weight: 900;
}

.hero-proof-caption p {
  margin: 0;
  font-size: 0.88rem;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.quick-proof div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 86px;
  padding: 20px 72px 20px 20px;
  border: 1px solid rgba(17, 19, 21, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 233, 222, 0.92)),
    var(--white);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 0 -7px rgba(185, 139, 72, 0.28),
    0 18px 38px rgba(17, 19, 21, 0.08);
}

.quick-proof div::before {
  position: absolute;
  z-index: -1;
  top: -13px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 139, 72, 0.48);
  background: rgba(229, 211, 166, 0.34);
  box-shadow:
    8px 8px 0 rgba(23, 40, 50, 0.08),
    16px 16px 0 rgba(185, 139, 72, 0.08);
  content: "";
  transform: rotate(45deg) skew(-6deg, -6deg);
}

.quick-proof div::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.quick-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
}

.quick-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.compact-section {
  background: #fbfaf7;
}

.compact-card-grid,
.build-grid,
.model-grid,
.founder-highlight-grid,
.industry-focus-grid,
.service-outcome-grid,
.work-proof-grid {
  display: grid;
  gap: 14px;
}

.compact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.build-grid,
.service-outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-grid,
.industry-focus-grid,
.work-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-card-grid article,
.build-grid article,
.model-grid article,
.industry-focus-grid article,
.service-outcome-grid article,
.work-proof-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 21, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 237, 228, 0.9)),
    var(--white);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 11px 0 -8px rgba(185, 139, 72, 0.28),
    0 20px 44px rgba(17, 19, 21, 0.075);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.compact-card-grid article::before,
.build-grid article::before,
.model-grid article::before,
.industry-focus-grid article::before,
.service-outcome-grid article::before,
.work-proof-grid article::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0 28%, var(--navy) 28% 44%, transparent 44%);
  content: "";
}

.compact-card-grid article::after,
.build-grid article::after,
.model-grid article::after,
.industry-focus-grid article::after,
.service-outcome-grid article::after,
.work-proof-grid article::after {
  position: absolute;
  z-index: -1;
  top: 22px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(185, 139, 72, 0.34);
  background: rgba(229, 211, 166, 0.16);
  box-shadow:
    7px 7px 0 rgba(23, 40, 50, 0.055),
    14px 14px 0 rgba(185, 139, 72, 0.055);
  content: "";
  opacity: 0.86;
  transform: rotate(45deg) skew(-7deg, -7deg);
}

.compact-card-grid article:nth-child(3n + 2)::after,
.build-grid article:nth-child(3n + 2)::after,
.service-outcome-grid article:nth-child(3n + 2)::after {
  transform: rotate(45deg) skew(7deg, 7deg) scale(0.88);
}

.compact-card-grid article:nth-child(3n)::after,
.build-grid article:nth-child(3n)::after,
.service-outcome-grid article:nth-child(3n)::after {
  border-color: rgba(23, 40, 50, 0.28);
  background: rgba(23, 40, 50, 0.06);
  transform: rotate(45deg) scale(0.76);
}

.compact-card-grid article {
  min-height: 132px;
}

.compact-card-grid span,
.model-grid span,
.industry-focus-grid span,
.service-outcome-grid span,
.work-proof-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--navy);
  border: 1px solid rgba(185, 139, 72, 0.24);
  background: linear-gradient(145deg, #f2e7c7, #dcc387);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.7) inset,
    0 6px 14px rgba(17, 19, 21, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
}

.compact-card-grid h3,
.build-grid h3,
.model-grid h3,
.industry-focus-grid h3,
.service-outcome-grid h3,
.work-proof-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.compact-card-grid h3 {
  margin-bottom: 0;
}

.build-grid p,
.model-grid p,
.industry-focus-grid p,
.service-outcome-grid p,
.work-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-outcome-grid article {
  min-height: 340px;
}

@media (hover: hover) {
  .quick-proof div,
  .dashboard-preview-grid article,
  .dashboard-gallery article {
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .quick-proof div:hover,
  .compact-card-grid article:hover,
  .build-grid article:hover,
  .model-grid article:hover,
  .industry-focus-grid article:hover,
  .service-outcome-grid article:hover,
  .work-proof-grid article:hover,
  .dashboard-preview-grid article:hover,
  .dashboard-gallery article:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 139, 72, 0.46);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 13px 0 -8px rgba(185, 139, 72, 0.34),
      0 28px 58px rgba(17, 19, 21, 0.13);
  }
}

.service-outcome-grid p + p {
  margin-top: 12px;
}

.service-outcome-grid strong {
  color: var(--ink);
}

.founder-home {
  background:
    linear-gradient(180deg, #fbfaf7, #f0ebe2),
    var(--paper);
}

.founder-home-grid,
.authority-grid,
.dashboard-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 62px;
  align-items: center;
}

.founder-home h2,
.authority-grid h2,
.dashboard-feature h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.founder-home p,
.dashboard-feature p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
}

.founder-highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.founder-highlight-grid span {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  padding: 12px 14px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 233, 222, 0.9));
  box-shadow: 0 10px 24px rgba(17, 19, 21, 0.06);
  font-size: 0.86rem;
  font-weight: 900;
}

.founder-highlight-grid span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
  content: "";
}

.founder-proof-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: #101214;
  box-shadow: 0 26px 70px rgba(17, 19, 21, 0.16);
}

.founder-proof-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.founder-proof-card figcaption {
  padding: 14px 16px;
  color: rgba(251, 250, 247, 0.66);
  background: #101214;
  font-size: 0.82rem;
}

.model-section {
  background: #fbfaf7;
}

.compact-page-hero {
  padding: 76px 0;
}

.dashboard-feature img {
  width: 100%;
  height: auto;
  object-fit: contain;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(17, 19, 21, 0.12);
}

.concise-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.priority-proof {
  padding-top: 82px;
}

.contact-links span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(251, 250, 247, 0.16);
  border-radius: 8px;
  color: rgba(251, 250, 247, 0.78);
  font-weight: 900;
}

.compact-form textarea {
  min-height: 112px;
}

@media (max-width: 1060px) {
  .feature-grid,
  .services-grid,
  .service-editorial-grid,
  .proof-grid,
  .challenge-grid.compact,
  .build-grid,
  .service-outcome-grid,
  .model-grid,
  .industry-focus-grid,
  .work-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: min(100% - 32px, 760px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(251, 250, 247, 0.12);
    border-radius: 8px;
    background: rgba(17, 19, 21, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .home-editorial .site-nav,
  .home-editorial .site-nav a,
  .home-editorial .nav-dropdown a {
    color: rgba(251, 250, 247, 0.72);
  }

  .home-editorial .site-nav a:hover,
  .home-editorial .site-nav a:focus-visible,
  .home-editorial .site-nav a.is-active {
    color: var(--white);
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    background: rgba(251, 250, 247, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-item {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    width: auto;
    padding: 0 0 6px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 10px 14px;
    color: rgba(251, 250, 247, 0.62);
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 19, 21, 0.9) 0%, rgba(17, 19, 21, 0.78) 62%, rgba(23, 40, 50, 0.66) 100%),
      linear-gradient(180deg, rgba(17, 19, 21, 0.16) 0%, rgba(17, 19, 21, 0.78) 100%);
  }

  .page-hero-grid,
  .intro-grid,
  .split-layout,
  .meaning-layout,
  .vision-layout,
  .industries-layout,
  .systems-layout,
  .contact-layout,
  .founder-preview-layout,
  .editorial-hero-layout,
  .editorial-split,
  .image-led-layout,
  .quiet-cta-layout,
  .methodology-layout,
  .portfolio-visual-layout,
  .portfolio-visual-layout.reverse,
  .concept-hero-grid,
  .recommendation-layout,
  .conversion-hero-grid,
  .founder-home-grid,
  .authority-grid,
  .dashboard-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .conversion-hero {
    padding: calc(var(--header-height) + 42px) 0 44px;
  }

  .conversion-hero-copy h1,
  .founder-home h2,
  .authority-grid h2,
  .dashboard-feature h2 {
    font-size: 3.45rem;
  }

  .editorial-hero {
    padding: calc(var(--header-height) + 40px) 0 50px;
  }

  .editorial-hero h1 {
    font-size: 3.45rem;
  }

  .editorial-visual,
  .editorial-visual img {
    min-height: 460px;
  }

  .operating-strip-grid,
  .proof-grid.expanded,
  .quick-proof,
  .compact-card-grid,
  .build-grid,
  .service-outcome-grid,
  .model-grid,
  .industry-focus-grid,
  .work-proof-grid,
  .founder-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-preview-grid,
  .dashboard-gallery {
    grid-template-columns: 1fr;
  }

  .concept-panel {
    position: relative;
    top: 0;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .concept-image {
    min-height: 48vh;
  }

  .concept-content {
    min-height: auto;
    padding: 36px 32px 48px;
  }

  .package-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .systems-steps article {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .systems-steps article p {
    grid-column: 2;
  }

  .methodology-steps article {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .methodology-steps article p {
    grid-column: 2;
  }

  .industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .brand-navbar-logo {
    width: 174px;
  }

  .brand-mark small {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: calc(var(--header-height) + 38px);
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero h1,
  .page-hero h1,
  .contact-copy h1,
  .editorial-hero h1,
  .concept-hero h1 {
    font-size: 2.45rem;
  }

  .concept-content h2 {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .concept-image {
    min-height: 42vh;
  }

  .concept-content {
    padding: 30px 16px 44px;
  }

  .hero-actions,
  .contact-links,
  .section-action {
    flex-direction: column;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 16px;
  }

  .section,
  .page-hero,
  .standalone-contact {
    padding: 76px 0;
  }

  .intro-section {
    padding: 52px 0;
  }

  .feature-grid,
  .services-grid,
  .service-editorial-grid,
  .challenge-grid,
  .challenge-grid.compact,
  .proof-grid,
  .proof-grid.expanded,
  .operating-strip-grid,
  .dashboard-preview-grid,
  .dashboard-gallery,
  .industry-list,
  .quick-proof,
  .compact-card-grid,
  .build-grid,
  .service-outcome-grid,
  .model-grid,
  .industry-focus-grid,
  .work-proof-grid,
  .founder-highlight-grid,
  .concise-list {
    grid-template-columns: 1fr;
  }

  .conversion-hero {
    padding: calc(var(--header-height) + 34px) 0 42px;
  }

  .conversion-hero-copy h1,
  .founder-home h2,
  .authority-grid h2,
  .dashboard-feature h2 {
    font-size: 2.72rem;
  }

  .conversion-hero-copy > p {
    font-size: 1rem;
  }

  .hero-proof-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .feature-card,
  .service-card,
  .work-item,
  .package-card,
  .challenge-grid article,
  .artifact-card,
  .service-editorial-grid article,
  .compact-card-grid article,
  .build-grid article,
  .model-grid article,
  .industry-focus-grid article,
  .service-outcome-grid article,
  .work-proof-grid article,
  .quick-proof div {
    min-height: auto;
  }

  .quick-proof div,
  .compact-card-grid article,
  .build-grid article,
  .model-grid article,
  .industry-focus-grid article,
  .service-outcome-grid article,
  .work-proof-grid article {
    padding: 22px;
  }

  .quick-proof div::before,
  .compact-card-grid article::after,
  .build-grid article::after,
  .model-grid article::after,
  .industry-focus-grid article::after,
  .service-outcome-grid article::after,
  .work-proof-grid article::after {
    opacity: 0.45;
    transform: rotate(45deg) scale(0.72);
  }

  .systems-steps article,
  .methodology-steps article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .systems-steps article p,
  .methodology-steps article p {
    grid-column: auto;
  }

  .editorial-visual,
  .editorial-visual img,
  .image-panel img {
    min-height: 280px;
    max-height: 560px;
  }

  .visual-note {
    position: absolute;
    min-width: 0;
    padding: 12px;
  }

  .visual-note-top {
    top: 12px;
    right: 12px;
  }

  .visual-note-bottom {
    left: 12px;
    bottom: 12px;
  }

  .contact-form,
  .founder-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
