:root {
  --ink: #111923;
  --muted: #63707c;
  --line: #d9dee5;
  --paper: #f4f6f8;
  --white: #ffffff;
  --navy: #0d1826;
  --navy-2: #172638;
  --navy-3: #22344a;
  --teal: #116b70;
  --gold: #c99b4a;
  --gold-soft: #ecd29c;
  --silver: #dbe2ea;
  --mist: #eef2f5;
  --shadow: 0 28px 86px rgba(13, 24, 38, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(20px, 5vw, 68px);
  color: var(--white);
  background: rgba(13, 24, 38, 0.88);
  border-bottom: 1px solid rgba(236, 210, 156, 0.28);
  backdrop-filter: blur(18px);
}

.brand-logo {
  display: block;
  width: clamp(210px, 23vw, 330px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.68) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 15, 24, 0.96) 0%, rgba(11, 21, 34, 0.92) 38%, rgba(11, 21, 34, 0.62) 68%, rgba(11, 21, 34, 0.52) 100%),
    linear-gradient(180deg, rgba(8, 15, 24, 0.72) 0%, rgba(8, 15, 24, 0.2) 46%, rgba(8, 15, 24, 0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  min-height: 94svh;
  margin: 0 auto;
  padding: 120px 0 72px;
}

.brand-stage {
  position: relative;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(236, 210, 156, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(13, 24, 38, 0.58);
  box-shadow: var(--shadow);
}

.brand-stage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(236, 210, 156, 0.2);
  border-radius: 6px;
  pointer-events: none;
}

.hero-logo-full {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
}

.brand-statement {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(236, 210, 156, 0.32);
}

.brand-statement span {
  padding: 14px 8px;
  background: rgba(8, 15, 24, 0.9);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.slogan {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.8vw, 80px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.signature-line {
  max-width: 620px;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #101b29;
  background: var(--gold-soft);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(236, 210, 156, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--navy);
  background: var(--white);
}

.signal-bar {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.section-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(13, 24, 38, 0.14);
  border-radius: 8px;
  background: rgba(201, 155, 74, 0.35);
  box-shadow: var(--shadow);
}

.signal-grid div {
  padding: 25px 28px;
  background: linear-gradient(180deg, #ffffff, #f8fafb);
}

.signal-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 22px;
}

.signal-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(78px, 9vw, 130px) 0;
}

.opening {
  background: var(--paper);
}

.opening-grid,
.architecture-grid,
.proof-grid,
.profile-panel,
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.opening-copy {
  display: grid;
  gap: 18px;
}

.opening-copy p,
.architecture-card p,
.lead,
.profile-points p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.outcomes-grid > div:first-child p {
  color: var(--muted);
  font-size: 18px;
}

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

.outcome-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafb);
  box-shadow: 0 12px 30px rgba(13, 24, 38, 0.05);
}

.outcome-list h3 {
  font-size: 18px;
}

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

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 24, 38, 0.98), rgba(17, 47, 62, 0.95)),
    var(--navy);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.section-heading.wide {
  max-width: 980px;
}

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

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

.service-grid article {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(236, 210, 156, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.service-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.architecture {
  background: var(--white);
}

.architecture-card {
  padding: clamp(30px, 5vw, 52px);
  border-left: 6px solid var(--gold);
  background: var(--paper);
}

.architecture-card blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.control-map {
  display: grid;
  gap: 12px;
}

.control-map div {
  position: relative;
  padding: 22px 24px 22px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(13, 24, 38, 0.06);
  font-weight: 900;
}

.control-map div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.sprint-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 24, 38, 0.94), rgba(12, 91, 96, 0.92)),
    var(--navy);
}

.sprint-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(236, 210, 156, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.sprint-panel .lead {
  color: rgba(255, 255, 255, 0.78);
}

.sprint-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sprint-meta span {
  padding: 10px 12px;
  border: 1px solid rgba(236, 210, 156, 0.4);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.deliverable-list {
  padding: 30px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.deliverable-list ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

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

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.dimension-grid article {
  min-height: 185px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--paper);
}

.dimension-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dimension-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.method-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(13, 24, 38, 0.05);
}

.method-grid strong {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: 13px;
}

.method-grid p,
.case-stack p,
.contact-card p,
.contact-card span {
  color: var(--muted);
}

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

.scale-card {
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.scale-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.scale-card dt {
  color: var(--navy);
  font-weight: 900;
}

.scale-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.case-stack {
  display: grid;
  gap: 13px;
}

.case-stack article {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafb);
}

.case-stack h3,
.case-stack p {
  margin-bottom: 0;
}

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

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

.industry-grid span {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(13, 24, 38, 0.04);
  font-weight: 900;
  text-align: center;
}

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

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

.insight-grid article {
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafb);
  box-shadow: 0 12px 30px rgba(13, 24, 38, 0.05);
}

.insight-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-grid p {
  color: var(--muted);
}

.profile-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 24, 38, 0.98), rgba(24, 38, 55, 0.94)),
    var(--navy);
}

.profile-panel {
  align-items: start;
}

.profile-points {
  display: grid;
  gap: 14px;
}

.profile-intro {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.profile-points p {
  margin: 0;
  padding: 18px 0 18px 24px;
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  padding: clamp(78px, 9vw, 126px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 91, 96, 0.94), rgba(13, 24, 38, 0.98)),
    var(--navy);
}

.contact-logo {
  display: block;
  width: min(480px, 80vw);
  height: auto;
  margin: 0 0 34px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.32));
}

.contact h2 {
  max-width: 720px;
}

.contact p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(236, 210, 156, 0.26);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card span {
  display: block;
  margin-top: 18px;
  font-size: 13px;
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #080f18;
}

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

.footer img {
  display: block;
  width: 210px;
  height: auto;
  margin-bottom: 12px;
}

.footer p {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold-soft);
}

@media (max-width: 1040px) {
  .topbar {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .opening-grid,
  .architecture-grid,
  .outcomes-grid,
  .sprint-panel,
  .proof-grid,
  .profile-panel,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 122px;
  }

  .brand-stage {
    max-width: 560px;
  }

  .service-grid,
  .method-grid,
  .signal-grid,
  .dimension-grid,
  .industry-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .topbar {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 190px;
    height: 42px;
  }

  .section-inner,
  .hero-inner {
    width: min(100% - 28px, 1220px);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 96px 0 64px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions {
    display: grid;
  }

  .brand-statement {
    grid-template-columns: 1fr;
  }

  .signal-bar {
    margin-top: 0;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid article,
  .method-grid article,
  .deliverable-list,
  .contact-card {
    padding: 22px;
  }
}

.topbar.solid {
  background: rgba(8, 15, 24, 0.96);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(236, 210, 156, 0.44);
  border-radius: 6px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
}

.service-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.outline {
  color: var(--navy);
  border-color: rgba(13, 24, 38, 0.22);
  background: transparent;
}

.button.dark-button {
  color: var(--white);
  background: var(--navy);
}

.page-main {
  padding-top: 84px;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 15, 24, 0.98), rgba(17, 47, 62, 0.92)),
    var(--navy);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  min-height: 620px;
  padding: clamp(70px, 9vw, 118px) 0;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(236, 210, 156, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.page-hero-panel img {
  display: block;
  width: 100%;
  max-width: 380px;
  margin-bottom: 28px;
}

.page-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
}

.about-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
}

.founder-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(236, 210, 156, 0.32);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-portrait figcaption {
  padding: 22px;
  color: var(--ink);
  font-size: 14px;
}

.founder-portrait strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 20px;
}

.narrative-section,
.founder-section,
.service-detail,
.case-study-list,
.insight-article-list,
.legal-page {
  background: var(--paper);
}

.narrative-grid,
.founder-grid,
.founder-bio-grid,
.difference-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.narrative-copy p,
.founder-bio-grid p,
.difference-grid p,
.detail-grid p,
.case-study-card p,
.insight-article p,
.legal-copy p {
  color: var(--muted);
  font-size: 18px;
}

.founder-teaser {
  background: var(--paper);
}

.founder-grid {
  align-items: center;
}

.founder-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(13, 24, 38, 0.13);
}

.founder-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.founder-photo-card.tall img {
  aspect-ratio: 4 / 5;
}

.founder-title {
  color: var(--navy);
  font-weight: 900;
}

.philosophy-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 24, 38, 0.98), rgba(17, 47, 62, 0.95)),
    var(--navy);
}

.principle-grid,
.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.principle-grid article,
.detail-card-grid article {
  padding: 28px;
  border: 1px solid rgba(236, 210, 156, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.detail-card-grid article {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 24, 38, 0.05);
}

.principle-grid p {
  color: rgba(255, 255, 255, 0.74);
}

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

.detail-card-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

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

.capability-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-list span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.service-hero {
  background:
    linear-gradient(135deg, rgba(8, 15, 24, 0.98), rgba(17, 47, 62, 0.94)),
    var(--navy);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  min-height: 590px;
  padding: clamp(70px, 9vw, 112px) 0;
}

.service-summary {
  padding: 30px;
  border: 1px solid rgba(236, 210, 156, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.service-summary h2 {
  margin-bottom: 22px;
  font-size: 25px;
}

.service-summary ul,
.case-study-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.service-summary li {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.case-study-list .section-inner {
  display: grid;
  gap: 22px;
}

.case-study-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(13, 24, 38, 0.07);
}

.case-study-heading {
  max-width: 920px;
  margin-bottom: 26px;
}

.case-study-heading span,
.insight-article span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 42px);
}

.case-study-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
}

.case-study-card h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 17px;
  text-transform: uppercase;
}

.case-study-card h3:first-child {
  margin-top: 0;
}

.case-study-card li {
  color: var(--muted);
}

.case-study-card blockquote {
  margin: 34px 0 0;
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: var(--paper);
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
}

.featured-case {
  border-color: rgba(201, 155, 74, 0.52);
}

.insight-article-list .section-inner {
  display: grid;
  gap: 18px;
}

.insight-article {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(13, 24, 38, 0.06);
}

.insight-article h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

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

.final-cta {
  padding: clamp(78px, 9vw, 126px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 91, 96, 0.94), rgba(13, 24, 38, 0.98)),
    var(--navy);
}

.final-cta.compact {
  padding: clamp(62px, 8vw, 96px) 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.legal-page {
  min-height: 70svh;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy a {
  color: var(--teal);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 1040px) {
  .page-main {
    padding-top: 0;
  }

  .page-hero-grid,
  .service-hero-grid,
  .narrative-grid,
  .founder-grid,
  .founder-bio-grid,
  .difference-grid,
  .detail-grid,
  .case-study-columns,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-grid,
  .service-hero-grid {
    min-height: auto;
    padding-top: 130px;
  }

  .principle-grid,
  .detail-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero-grid,
  .service-hero-grid {
    padding-top: 96px;
  }

  .page-hero-panel,
  .service-summary,
  .case-study-card,
  .insight-article {
    padding: 22px;
  }

  .case-study-card blockquote {
    font-size: 18px;
  }
}
