:root {
  --ink: #17202a;
  --muted: #5d6673;
  --line: #d8dde4;
  --soft: #f3f5f7;
  --paper: #ffffff;
  --navy: #101840;
  --navy-2: #22304f;
  --gold: #c79a3d;
  --gold-2: #e6c16f;
  --teal: #257b76;
  --danger: #9a4b3a;
  --shadow: 0 18px 40px rgba(23, 32, 42, 0.12);
  --radius: 8px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

a:hover {
  color: var(--teal);
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(16, 24, 64, 0.28);
}

.section.dark a:focus-visible,
.section.dark button:focus-visible,
.section.dark .button:focus-visible,
.hero a:focus-visible,
.hero button:focus-visible,
.site-footer a:focus-visible {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.28);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  font-size: 3rem;
  max-width: 920px;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 23, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.26));
}

.brand span {
  display: block;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 25px 0 23px;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 0;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

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

.nav-links a[aria-current="page"] {
  color: #ffffff;
  font-weight: 700;
}

.nav-links .nav-cta[aria-current="page"] {
  color: #10151c;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 28px rgba(199, 154, 61, 0.24);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-cta {
  min-height: 50px;
  padding: 13px 18px;
  border-color: rgba(199, 154, 61, 0.72);
  background: linear-gradient(135deg, #101840 0%, #17255a 58%, #c79a3d 160%);
  box-shadow: 0 14px 30px rgba(16, 24, 64, 0.2);
}

.nav-cta::after {
  content: ">";
  width: auto;
  height: auto;
  margin-left: 10px;
  border: 0;
  font-weight: 900;
  transform: translateY(-1px);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--teal), #34a39b);
  border-color: var(--teal);
  color: #ffffff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(199, 154, 61, 0.42);
  outline-offset: 3px;
}

.button.secondary {
  background: #ffffff;
  color: var(--navy);
}

.button.secondary:hover {
  background: var(--soft);
  color: var(--navy);
}

.button.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: var(--gold);
  color: #10151c;
  box-shadow: 0 10px 22px rgba(199, 154, 61, 0.18);
}

.button.gold:hover {
  background: linear-gradient(135deg, var(--gold-2), #f2d995);
  border-color: var(--gold-2);
  color: #10151c;
}

.nav-links .nav-cta {
  min-height: 38px;
  padding: 10px 15px;
  border-radius: 999px;
  border-color: rgba(199, 154, 61, 0.76);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #10151c;
  box-shadow: 0 8px 18px rgba(199, 154, 61, 0.16);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #10151c;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: #ffffff;
  background-color: var(--navy);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 64px;
}

.hero p {
  max-width: 760px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
}

.home-hero .hero-inner {
  padding: 108px 0 78px;
}

.home-hero {
  min-height: 78vh;
}

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

.about-hero {
  min-height: 66vh;
  background-position: center;
}

.about-hero .hero-inner {
  padding-top: 104px;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin-top: 28px;
}

.hero-highlights span {
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 24, 64, 0.46);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(230, 193, 111, 0.56);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.12);
  color: #fff8e9;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.lead-strip {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(216, 221, 228, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.lead-panel h2 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.lead-panel p {
  margin: 0;
  color: var(--muted);
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 76px 0;
}

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

.section.dark {
  background: var(--navy);
  color: #ffffff;
}

.section.dark p,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.media-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.portrait-safe {
  background: #ffffff;
}

.media-frame.portrait-safe img {
  object-fit: contain;
  object-position: center bottom;
}

.card,
.project-card,
.profile-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card {
  padding: 24px;
}

.card.image-card,
.card.blog-card {
  padding: 0;
}

.section.dark .card {
  color: var(--ink);
}

.card .kicker,
.project-card .kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-card {
  min-height: 100%;
}

.audience-card h3 {
  margin-bottom: 10px;
}

.solution-grid {
  align-items: stretch;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-card h3 {
  margin-bottom: 0;
}

.solution-card .check-list {
  margin-bottom: 4px;
}

.solution-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric {
  min-height: 128px;
  padding: 24px;
  background: #ffffff;
}

.metric.with-icon {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.metric.with-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.1;
}

.service-list,
.check-list,
.timeline,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li,
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.service-list li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline li {
  padding: 0 0 18px 24px;
  border-left: 2px solid var(--line);
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline strong {
  display: block;
  color: var(--navy);
}

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 154, 61, 0.55);
  box-shadow: 0 22px 42px rgba(23, 32, 42, 0.1);
}

.project-grid {
  align-items: stretch;
}

.project-media {
  position: relative;
  overflow: hidden;
}

.project-media img,
.image-card img,
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-note {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(16, 24, 64, 0.78);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.image-card,
.blog-card {
  overflow: hidden;
}

.image-card .body,
.blog-card .body {
  padding: 22px;
}

.blog-card h2 {
  font-size: 1.45rem;
}

.blog-card .body {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

.blog-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.blog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.blog-card-actions .button {
  margin-top: 0;
}

.blog-card-actions .button.gold::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 8px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.blog-card-actions .interest-icon-button {
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 8px;
}

.blog-card-actions .button.gold.interest-icon-button::before {
  width: 18px;
  height: 18px;
  margin-right: 0;
}

.blog-card.is-coming-soon {
  position: relative;
  border: 1px solid rgba(199, 154, 61, 0.36);
  background: linear-gradient(135deg, #fffdf6 0%, #ffffff 48%, #edf8f7 100%);
  box-shadow: 0 16px 34px rgba(23, 32, 42, 0.08);
}

.blog-card.is-coming-soon::before {
  content: none;
}

.blog-card.is-coming-soon > img,
.blog-card.is-coming-soon .scheduled-preview-content {
  display: none;
}

.blog-card:not(.is-coming-soon) [data-scheduled-teaser] {
  display: none;
}

.blog-card.is-coming-soon .body {
  min-height: 0;
  gap: 14px;
  padding-top: 24px;
}

.coming-soon-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.coming-soon-date {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 123, 118, 0.1);
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.coming-soon-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.blog-card.is-coming-soon .kicker {
  color: #8a621e;
}

.blog-card.is-coming-soon h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.28;
}

.blog-card.is-coming-soon .button {
  margin-top: 8px;
  border-color: rgba(37, 123, 118, 0.28);
  background: #ffffff;
  color: var(--navy);
}

.blog-card.is-coming-soon .button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #111827;
}

.blog-card.is-coming-soon .blog-card-actions .button {
  margin-top: 0;
}

.upcoming-heading {
  margin-top: 48px;
}

.upcoming-grid {
  align-items: start;
}

.blog-interest-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(37, 123, 118, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.96), rgba(255, 255, 255, 0.98) 48%, rgba(237, 248, 247, 0.94)),
    #ffffff;
  box-shadow: 0 18px 38px rgba(23, 32, 42, 0.08);
}

.blog-interest-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.blog-interest-copy {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(199, 154, 61, 0.24);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.blog-interest-copy h2 {
  font-size: 1.9rem;
}

.blog-interest-panel .form-grid {
  grid-column: 2;
  margin: 0;
}

.blog-interest-panel .button {
  grid-column: 2;
  align-self: start;
  justify-self: start;
  min-width: 180px;
}

.blog-interest-panel .form-status,
.blog-interest-panel .form-privacy-note {
  grid-column: 2;
  max-width: 640px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.post-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 6px;
  background: #fff8e9;
  color: #8a621e;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-note {
  margin-bottom: 28px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e9;
  color: var(--muted);
}

.article-hero {
  padding: 78px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(237, 245, 244, 0.98) 0%, rgba(255, 248, 233, 0.74) 100%),
    var(--soft);
}

.article-hero-inner {
  display: block;
}

.article-hero-copy {
  max-width: 920px;
}

.article-hero h1 {
  max-width: 940px;
  color: var(--ink);
}

.article-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.article-cover {
  margin: 42px 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.article-body {
  padding-bottom: 80px;
  color: var(--ink);
  font-size: 1.04rem;
}

.article-body p {
  margin-bottom: 1.08rem;
}

.source-note {
  margin-top: 26px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e9;
  color: var(--muted);
  font-size: 0.96rem;
  font-style: italic;
}

.source-note span {
  display: block;
  margin-bottom: 4px;
  color: #8a621e;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.source-note em {
  display: block;
  margin-top: 8px;
  color: #4f5c6b;
  font-style: italic;
}

.source-note strong {
  color: #8a621e;
  font-style: normal;
}

.article-body h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.article-body ul {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}

.article-body li {
  margin-bottom: 0.55rem;
}

.schedule-notice {
  margin: 34px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e9;
}

.image-card.compact img {
  height: 180px;
}

.project-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.project-card h3 {
  min-height: 0;
  margin-bottom: 0;
  font-size: 1.28rem;
}

.project-card p {
  margin-bottom: 0;
}

.status-pill {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f4f2;
  color: #146965;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.case-meta {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid rgba(216, 221, 228, 0.72);
  border-radius: var(--radius);
  background: #f8fafb;
}

.case-meta span {
  display: grid;
  grid-template-columns: minmax(90px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.case-meta strong {
  color: var(--navy);
}

.case-meta.compact {
  gap: 7px;
  margin: 14px 0;
  padding: 12px;
}

.case-meta.compact span {
  grid-template-columns: minmax(82px, 0.62fr) minmax(0, 1fr);
  gap: 10px;
  font-size: 0.86rem;
}

.handled-line {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.completed-project {
  border-color: rgba(37, 123, 118, 0.28);
}

.precontract-section {
  overflow: hidden;
}

.precontract-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 28px;
}

.precontract-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(216, 221, 228, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
}

.precontract-copy h2 {
  max-width: 680px;
}

.precontract-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.precontract-points span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 6px;
  background: #eaf4f3;
  color: #13716c;
  font-size: 0.86rem;
  font-weight: 800;
}

.precontract-media {
  min-height: 360px;
}

.precontract-media img {
  object-position: center;
}

.precontract-grid {
  align-items: stretch;
}

.service-step-card {
  position: relative;
  min-height: 100%;
  padding: 24px 24px 24px 76px;
}

.service-step-card h3 {
  margin-bottom: 10px;
}

.step-marker {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.work-split {
  align-items: start;
}

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

.process-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fff8e9;
  color: #8a621e;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

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

.home-blog-grid .blog-card .body {
  min-height: 250px;
}

.home-blog-grid .blog-card h2 {
  font-size: 1.22rem;
}

.home-final-cta {
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.section.dark .button.secondary,
.cta-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.86);
}

.cta-band .cta-actions .button:not(.gold):not(.secondary) {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 26px rgba(0, 0, 0, 0.18);
}

.cta-band .cta-actions .button:not(.gold):not(.secondary):hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.project-note {
  margin-bottom: 26px;
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #edf5f4;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #edf5f4;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
}

.profile-card {
  padding: 28px;
}

.profile-card.featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
}

.profile-card header {
  margin-bottom: 20px;
}

.profile-card .role {
  color: var(--gold);
  font-weight: 800;
}

.profile-photo {
  aspect-ratio: 3 / 4;
  margin-bottom: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px;
  background: #ffffff;
}

.logo-panel img {
  width: min(380px, 90%);
  height: auto;
  object-fit: contain;
}

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

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

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

.section.dark .card p,
.section.dark .card li {
  color: var(--muted);
}

.service-mini-card {
  min-height: 100%;
}

.service-mini-card .body {
  display: grid;
  gap: 10px;
}

.service-mini-card p {
  margin-bottom: 0;
}

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

.experience-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.experience-panel .timeline {
  display: grid;
  gap: 14px;
}

.experience-panel .timeline li {
  padding-bottom: 14px;
}

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

.reference-card {
  position: relative;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(23, 32, 42, 0.05);
}

.reference-card h3 {
  font-size: 1.1rem;
}

.reference-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.reference-card .tag-row {
  margin-top: 16px;
}

.experience-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 249, 0.96)),
    radial-gradient(circle at 90% 10%, rgba(230, 193, 111, 0.22), transparent 32%);
}

.career-panel {
  align-content: start;
  gap: 18px;
  padding: 30px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f8fbfa 58%, #fff8e9 100%),
    radial-gradient(circle at 88% 8%, rgba(30, 125, 119, 0.12), transparent 28%);
  box-shadow: 0 18px 44px rgba(23, 32, 42, 0.08);
}

.career-panel-head p {
  max-width: 480px;
  margin: 8px 0 0;
  color: var(--muted);
}

.career-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  gap: 12px;
}

.career-metrics span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(30, 125, 119, 0.16);
  border-radius: 8px;
  background: #edf5f4;
}

.career-metrics strong {
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1;
}

.career-metrics small {
  color: var(--navy);
  font-weight: 800;
}

.career-timeline {
  padding: 16px 0 4px;
}

.career-timeline li {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.career-timeline span {
  color: var(--ink);
}

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

.experience-highlights span {
  padding: 12px;
  border: 1px solid rgba(199, 154, 61, 0.26);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.career-tags span {
  padding: 10px 12px;
  border-color: rgba(199, 154, 61, 0.24);
  background: #ffffff;
  font-size: 0.94rem;
}

.mission-grid {
  counter-reset: mission;
}

.mission-card {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
}

.mission-card::before {
  counter-increment: mission;
  content: "0" counter(mission);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.mission-card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.mission-card p {
  margin-bottom: 0;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-help,
.form-privacy-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
}

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

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

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

label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(199, 154, 61, 0.28);
  border-color: var(--gold);
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e9;
}

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

.site-footer {
  padding: 48px 0 28px;
  background: #101722;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 28px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-social {
  margin-top: 14px;
}

.site-footer .social-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #1877f2;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer .social-link::before {
  content: "f";
  display: inline-grid;
  width: auto;
  height: auto;
  place-items: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.site-footer .social-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
}

.site-footer h3 {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer h3::before {
  content: none;
}

.site-footer h3 img {
  position: static;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
}

.site-footer h4 {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.82);
}

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

.site-footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  left: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

  h2 {
    font-size: 1.9rem;
  }

  .menu-button {
    display: block;
  }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    flex: 1 1 0;
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

  .menu-button {
    flex: 0 0 44px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .nav-links a:not(.nav-cta)::after {
    bottom: 8px;
  }

  .nav-cta {
    width: 100%;
  }

  .grid.three,
  .grid.four,
  .split,
  .precontract-showcase,
  .process-grid,
  .hero-highlights,
  .experience-grid,
  .reference-grid,
  .metric-row,
  .contact-strip,
  .footer-grid,
  .lead-panel,
  .blog-interest-panel,
  .article-hero-inner,
  .profile-card.featured,
  .cta-band,
  .home-final-cta {
    grid-template-columns: 1fr;
  }

  .blog-interest-copy {
    position: static;
  }

  .lead-actions,
  .cta-actions {
    justify-content: flex-start;
  }

  .project-card h3 {
    min-height: auto;
  }

  .precontract-media {
    min-height: 280px;
  }

  .home-hero .hero-inner {
    padding-bottom: 58px;
  }

  .home-hero {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: 62vh;
  }

  .hero-inner {
    padding: 68px 0 40px;
  }

  .home-hero .hero-inner {
    padding: 42px 0 28px;
  }

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

  .hero-actions {
    margin-top: 20px;
  }

  .hero-highlights {
    gap: 8px;
    margin-top: 18px;
  }

  .grid.two,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights span {
    min-height: auto;
    padding: 10px 12px;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .lead-strip {
    margin-top: -28px;
  }

  .lead-panel {
    gap: 18px;
    padding: 20px 22px;
  }

  .lead-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .lead-actions .button {
    width: 100%;
    padding: 10px 8px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .case-meta span {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .case-meta.compact span {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .process-card {
    padding: 18px;
  }

  .precontract-copy {
    padding: 24px;
  }

  .precontract-points {
    display: grid;
  }

  .service-step-card {
    padding: 22px 22px 22px 70px;
  }

  .home-blog-grid .blog-card .body {
    min-height: 0;
  }

  .career-metrics,
  .career-timeline li,
  .experience-highlights {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }
}
