:root {
  --brand-navy: #214761;
  --brand-blue: #375971;
  --brand-steel: #647e90;
  --brand-fog: #90a3b0;
  --brand-silver: #c2c8c5;
  --brand-stone: #ddddda;
  --ink: #0d1820;
  --muted: #526b7b;
  --primary: var(--brand-navy);
  --primary-deep: #132f41;
  --primary-soft: #e7edf0;
  --accent: #98632f;
  --accent-light: #d6a35e;
  --paper: #f8f8f5;
  --surface: #f1f3f0;
  --white: #ffffff;
  --line: rgba(33, 71, 97, 0.16);
  --line-strong: rgba(33, 71, 97, 0.26);
  --shadow: 0 24px 70px rgba(33, 71, 97, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 86px;
  padding: 12px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(248, 248, 245, 0.94);
  border-bottom: 1px solid rgba(33, 71, 97, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: clamp(236px, 22vw, 330px);
  height: auto;
}

.primary-navigation {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.primary-navigation a {
  padding: 9px 10px;
  color: var(--primary-deep);
  border-radius: 8px;
  font-size: 0.9rem;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a[aria-current="page"] {
  background: var(--primary-soft);
  outline: none;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.header-action,
.button-primary {
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.header-action:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-line {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(600px, 78svh, 780px);
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 66% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 19, 28, 0.94) 0%, rgba(33, 71, 97, 0.84) 36%, rgba(55, 89, 113, 0.28) 68%, rgba(8, 19, 28, 0.34) 100%),
    linear-gradient(180deg, rgba(13, 24, 32, 0.04), rgba(13, 24, 32, 0.38));
}

.hero-content {
  width: min(790px, calc(100% - 48px));
  margin: auto 0 auto clamp(24px, 7vw, 88px);
  padding: 72px 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy,
.hero-note,
.page-hero p,
.section-header p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.cta-band p,
.body-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-note {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero .button-secondary,
.cta-band .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.split-section .eyebrow,
.cta-band .eyebrow {
  color: var(--accent-light);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.credibility-strip div {
  min-height: 112px;
  padding: 24px clamp(20px, 4vw, 48px);
  background: var(--white);
}

.credibility-strip strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
}

.credibility-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section,
.page-hero,
.cta-band {
  padding: 92px clamp(24px, 6vw, 84px);
}

.section-header {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-header.compact {
  margin-bottom: 30px;
}

.section-header h2,
.split-copy h2,
.cta-band h2,
.service-detail h2,
.proof-panel h2,
.contact-panel h2,
.case-story h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-header p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.cta-band p {
  max-width: 730px;
  margin: 18px 0 0;
}

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

.card-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.content-card,
.proof-panel,
.contact-panel,
.founder-card,
.founder-photo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(33, 71, 97, 0.08);
}

.content-card {
  min-height: 260px;
  padding: 28px;
}

.content-card.compact-card,
.topic-card {
  min-height: 220px;
}

.service-card {
  min-height: 250px;
}

.card-index,
.story-step {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 8px;
  font-weight: 840;
}

.content-card h3,
.step-list span,
.founder-card strong,
.contact-panel h2 {
  margin: 24px 0 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.content-card p,
.content-card li,
.step-list p,
.case-story p,
.case-story li,
.proof-panel li,
.contact-panel p {
  color: var(--muted);
}

.content-card p,
.step-list p,
.case-story p,
.contact-panel p {
  margin: 0;
}

.section-link {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 780;
  transition: transform 160ms ease;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.email-link {
  color: inherit;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 56px;
  align-items: start;
  color: var(--white);
  background: var(--primary-deep);
}

.split-copy p:not(.eyebrow),
.split-section .body-copy p,
.split-section li {
  color: rgba(255, 255, 255, 0.76);
}

.step-list,
.deliverable-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.step-list article,
.deliverable-list li {
  padding: 26px;
  background: rgba(255, 255, 255, 0.09);
}

.deliverable-list {
  counter-reset: deliverables;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  overflow: visible;
  list-style: none;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.deliverable-list li {
  position: relative;
  counter-increment: deliverables;
  min-height: 124px;
  padding: 26px 24px 24px 88px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 1.06rem;
  font-weight: 680;
  line-height: 1.38;
}

.deliverable-list li::before {
  content: counter(deliverables, decimal-leading-zero);
  top: 30px;
  left: 28px;
  min-width: 34px;
  text-align: right;
  width: auto;
  height: auto;
  color: var(--accent-light);
  background: transparent;
  border-radius: 0;
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.step-list span {
  display: block;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 780;
}

.split-section .step-list p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.65;
}

.feature-list,
.plain-list,
.check-list,
.outcome-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.plain-list li,
.check-list li,
.outcome-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before,
.plain-list li::before,
.check-list li::before,
.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 999px;
}

.case-preview-section {
  background: var(--white);
}

.case-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 47, 65, 0.98), rgba(55, 89, 113, 0.92)),
    var(--primary);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-preview h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.case-preview p,
.outcome-list li {
  color: rgba(255, 255, 255, 0.78);
}

.case-preview p {
  max-width: 720px;
  margin: 18px 0 0;
}

.case-preview .button {
  margin-top: 28px;
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome-list li::before {
  background: var(--accent-light);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  background: var(--surface);
}

.founder-credential-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-credential-panel div {
  padding: 22px;
  background: var(--white);
}

.founder-credential-panel strong {
  display: block;
  color: var(--primary);
  font-size: 1.08rem;
  line-height: 1.2;
}

.founder-credential-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.founder-section h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.founder-section p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.06rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--primary-deep);
  font-weight: 780;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 47, 65, 0.97), rgba(55, 89, 113, 0.9)),
    var(--primary);
}

.cta-band h2,
.cta-band p {
  max-width: 870px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 44px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 47, 65, 0.98), rgba(33, 71, 97, 0.92)),
    var(--primary);
}

.page-hero.wide-copy,
.page-hero.contact-hero {
  grid-template-columns: minmax(0, 980px);
}

.about-hero {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.3fr);
}

.page-hero p {
  max-width: 800px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.workflow-visual {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.workflow-visual span {
  display: block;
  height: 16px;
  background: linear-gradient(90deg, rgba(214, 163, 94, 0.85), rgba(144, 163, 176, 0.32));
  border-radius: 999px;
}

.workflow-visual span:nth-child(2) {
  width: 78%;
}

.workflow-visual span:nth-child(3) {
  width: 58%;
}

.workflow-visual span:nth-child(4) {
  width: 88%;
}

.page-hero-media {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(8, 19, 28, 0.24);
}

.page-hero-media img {
  width: 100%;
  height: clamp(260px, 28vw, 380px);
  object-fit: cover;
  object-position: center;
}

.service-detail-section {
  display: grid;
  gap: 18px;
}

.service-detail,
.reading-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.service-detail {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-detail h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.service-detail p {
  color: var(--muted);
}

.why-line {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.check-list,
.feature-list {
  display: grid;
  gap: 12px;
}

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

.feature-list.compact {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.feature-list li,
.check-list li {
  color: var(--primary-deep);
}

.body-copy {
  max-width: 850px;
}

.body-copy p + p {
  margin-top: 16px;
}

.case-story {
  display: grid;
  gap: 20px;
}

.case-story article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px 24px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-story h2,
.case-story p,
.case-story ul {
  grid-column: 2;
}

.case-story h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.case-story .check-list {
  margin-top: 18px;
}

.plain-list {
  display: grid;
  gap: 10px;
}

.proof-panel {
  padding: 30px;
}

.proof-panel h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.founder-card {
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 300px;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 47, 65, 0.95), rgba(100, 126, 144, 0.88)),
    var(--primary);
}

.founder-card span {
  color: var(--accent-light);
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-card strong {
  display: block;
  color: var(--white);
  font-size: 1.65rem;
}

.founder-photo-card {
  align-self: stretch;
  justify-self: end;
  width: min(340px, 100%);
  margin: 0;
  overflow: hidden;
  background: var(--primary-deep);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(8, 19, 28, 0.24);
}

.founder-photo-card img {
  width: 100%;
  height: clamp(250px, 24vw, 340px);
  object-fit: cover;
  object-position: center 38%;
}

.founder-photo-card figcaption {
  padding: 22px 24px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 47, 65, 0.98), rgba(33, 71, 97, 0.94)),
    var(--primary);
}

.founder-photo-card span {
  display: block;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-photo-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.25;
}

.contact-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.contact-layout-simple {
  grid-template-columns: minmax(0, 940px);
}

.contact-panel {
  padding: 32px;
}

.contact-panel h2 {
  margin: 0;
}

.contact-panel .button {
  margin-top: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(280px, 1fr) auto;
  gap: 18px 36px;
  align-items: center;
  padding: 34px clamp(24px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-logo {
  width: min(330px, 72vw);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.site-footer p {
  margin: 0;
}

.copyright {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .primary-navigation {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
  }

  .site-header.is-open .primary-navigation {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 4px;
    padding-top: 8px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(100% - 36px, 680px);
    margin-inline: 18px;
    padding: 58px 0;
  }

  .credibility-strip,
  .card-grid.two,
  .card-grid.three,
  .split-section,
  .case-preview,
  .founder-section,
  .page-hero,
  .service-detail,
  .reading-layout,
  .contact-layout,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .workflow-visual {
    max-width: 420px;
  }

  .page-hero-media {
    max-width: 560px;
  }

  .founder-photo-card {
    justify-self: start;
    width: min(340px, 100%);
  }

  .section,
  .page-hero,
  .cta-band {
    padding-block: 66px;
  }

  .case-story article {
    grid-template-columns: 1fr;
  }

  .case-story h2,
  .case-story p,
  .case-story ul {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 76px;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 205px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .section,
  .page-hero,
  .cta-band {
    padding-inline: 18px;
  }

  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .content-card,
  .case-story article,
  .proof-panel,
  .contact-panel {
    min-height: auto;
    padding: 24px;
  }

  .button {
    width: 100%;
  }

  .copyright {
    white-space: normal;
  }
}
