:root {
  --bg: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-dark: #0a1828;
  --surface-dark-2: #13263d;
  --text: #152338;
  --muted: #51637d;
  --primary: #0f5f98;
  --primary-strong: #0a446d;
  --accent: #d59b42;
  --border: #d7e0eb;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 10px 26px rgba(14, 34, 57, 0.08);
  --shadow-md: 0 16px 40px rgba(14, 34, 57, 0.13);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -6%, rgba(15, 95, 152, 0.1), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(213, 155, 66, 0.1), transparent 33%),
    var(--bg);
  line-height: 1.64;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.7rem);
}

h2 {
  font-size: clamp(1.65rem, 4.1vw, 2.95rem);
}

h3 {
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.74rem;
}

.eyebrow {
  color: #e6efff;
  background: rgba(8, 23, 40, 0.56);
  border: 1px solid rgba(194, 211, 233, 0.31);
  border-radius: 999px;
  padding: 0.35rem 0.74rem;
}

.kicker {
  color: var(--primary);
  margin-bottom: 0.55rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(242, 247, 252, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #d5dfec;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(15, 31, 52, 0.13);
  background: rgba(246, 250, 255, 0.95);
}

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

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.brand strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.14rem;
}

.brand span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  color: var(--text);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.nav-links a {
  padding: 0.53rem 0.72rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: #e6eef7;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid transparent;
  padding: 0.82rem 1.2rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #126daa, #0a446d);
  box-shadow: 0 14px 34px rgba(10, 68, 109, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(10, 68, 109, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: #9eb3cb;
  color: #14375a;
}

.btn-secondary:hover {
  border-color: #7e9bbc;
  background: #f8fbff;
}

.section,
.page-header {
  padding: clamp(4.2rem, 7vw, 6.4rem) 0;
}

.page-header {
  padding-bottom: clamp(3.2rem, 5vw, 4.6rem);
  background:
    linear-gradient(180deg, #f2f6fb 0%, #e9f0f8 100%);
  border-bottom: 1px solid #dde6f1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.2rem, 10vw, 7.4rem) 0 clamp(4.8rem, 8vw, 6.2rem);
  color: #edf5ff;
  background: linear-gradient(121deg, #091425 0%, #132b45 58%, #224666 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 14%, rgba(213, 155, 66, 0.25), transparent 33%),
    radial-gradient(circle at 11% 85%, rgba(84, 149, 207, 0.17), transparent 42%);
  pointer-events: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(238, 242, 247, 0.95) 100%);
}

.hero-signature::before {
  background:
    radial-gradient(circle at 88% 14%, rgba(213, 155, 66, 0.34), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(74, 146, 211, 0.24), transparent 42%),
    repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 18px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.4rem;
  align-items: stretch;
}

.hero-main {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.hero-main h1 {
  max-width: 14.1ch;
  margin-bottom: 0.28rem;
  letter-spacing: -0.038em;
  line-height: 0.94;
  text-wrap: pretty;
  font-size: clamp(2.95rem, 5.25vw, 5.15rem);
}

.hero-main .lead,
.hero-panel-copy p {
  color: rgba(236, 244, 255, 0.94);
}

.hero-main .lead {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.hero .btn-primary {
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(198, 218, 241, 0.28);
}

.hero-tags {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem 0.62rem;
  max-width: 40rem;
}

.hero-tags span {
  border: 1px solid rgba(195, 211, 233, 0.28);
  background: rgba(6, 20, 35, 0.38);
  border-radius: 999px;
  padding: 0.42rem 0.74rem;
  font-size: 0.81rem;
  font-weight: 650;
  line-height: 1.2;
}

.hero-signature-strip {
  margin-top: 0.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 0.56rem;
  max-width: 41rem;
}

.hero-signature-strip span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(193, 210, 233, 0.24);
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(230, 240, 255, 0.86);
  background: rgba(7, 20, 34, 0.26);
}

.hero-panel {
  background: rgba(7, 20, 35, 0.46);
  border: 1px solid rgba(177, 199, 225, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.hero-media {
  overflow: hidden;
  border-radius: 14px;
  min-height: 280px;
}

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

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.spec-list li {
  border: 1px solid rgba(175, 198, 224, 0.3);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(8, 18, 31, 0.38);
}

.spec-list p {
  color: rgba(232, 241, 255, 0.84);
  font-size: 0.95rem;
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 0.85rem;
  align-items: center;
  gap: 0.72rem 0.84rem;
}

.hero-actions .btn-primary {
  padding-inline: 1.34rem;
}

.hero-actions .btn-secondary {
  border-color: rgba(188, 206, 230, 0.34);
  background: rgba(247, 251, 255, 0.1);
  color: #edf5ff;
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
  background: rgba(247, 251, 255, 0.16);
  color: #ffffff;
}

.section-soft {
  background: linear-gradient(180deg, #eef3f8 0%, #e6edf6 100%);
  border-block: 1px solid #dbe4ef;
}

.section-dark {
  color: #eaf2fe;
  background: linear-gradient(129deg, #0d1d2f 0%, #132941 58%, #1f3a58 100%);
}

.section-dark p,
.section-dark .lead {
  color: rgba(235, 244, 255, 0.86);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.section-identity,
.section-specialization,
.section-editorial,
.section-contrast-light {
  position: relative;
}

.section-identity::after,
.section-specialization::after,
.section-editorial::after,
.section-contrast-light::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132, 164, 201, 0.45), transparent);
}

.section-specialization {
  background:
    radial-gradient(circle at 12% 18%, rgba(48, 110, 170, 0.2), transparent 38%),
    radial-gradient(circle at 86% 86%, rgba(213, 155, 66, 0.2), transparent 34%),
    linear-gradient(132deg, #0e2034 0%, #152d47 62%, #1d3b59 100%);
}

.section-specialization .kicker {
  color: #c9ddf8;
}

.section-specialization h2,
.section-specialization h3 {
  color: #eef5ff;
}

.section-specialization p,
.section-specialization .lead {
  color: rgba(232, 241, 255, 0.85);
}

.section-specialization .service-priority {
  border-left-color: rgba(213, 155, 66, 0.8);
  background: rgba(8, 20, 33, 0.42);
  border-color: rgba(168, 193, 221, 0.28);
}

.section-editorial {
  background: linear-gradient(180deg, #eff4fa 0%, #f7faff 100%);
}

.section-contrast-light {
  background:
    radial-gradient(circle at 90% 10%, rgba(213, 155, 66, 0.1), transparent 34%),
    #ffffff;
}

.section-head p {
  margin: 0;
}

.section-angled-top {
  position: relative;
}

.section-angled-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 34px;
  background: linear-gradient(180deg, rgba(191, 209, 230, 0.28), transparent);
}

.grid-2,
.grid-3,
.grid-4,
.value-grid,
.audience-grid,
.process-grid,
.service-overview-grid {
  display: grid;
  gap: 1.05rem;
}

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

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

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

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

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

.card,
.contact-box,
.cta-band {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 1.2rem;
}

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

.card-media {
  overflow: hidden;
  border-radius: 11px;
  margin: -0.35rem -0.35rem 0.95rem;
  min-height: 0;
  aspect-ratio: 16/10;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-media img,
.featured-project:hover .featured-image img,
.project-card:hover .project-media img,
.split-media:hover img {
  transform: scale(1.05);
}

.service-priority {
  border-left: 3px solid var(--primary);
}

.service-block {
  padding: 1.35rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.priority-grid .service-priority:nth-child(1) {
  background: linear-gradient(180deg, #f9fcff 0%, #eef5ff 100%);
}

.priority-grid .service-priority:nth-child(2) {
  background: linear-gradient(180deg, #fffaf2 0%, #f7f1e3 100%);
}

.priority-grid .service-priority:nth-child(3) {
  background: linear-gradient(180deg, #f7fcfb 0%, #edf8f6 100%);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.split-copy,
.split-media,
.about > div,
.about-media {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.split-copy,
.about > div {
  padding: 1.35rem;
}

.about-panel {
  padding: 1.75rem 1.8rem;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.about-panel .kicker {
  color: #0f5f98;
  margin-bottom: 0.2rem;
  letter-spacing: 0.1em;
}

.about-panel h2 {
  color: #13263d;
  max-width: 13ch;
  line-height: 1.04;
  margin-bottom: 0.35rem;
}

.about-panel .lead {
  max-width: 37ch;
  color: #455a74;
  font-size: 1.01rem;
  line-height: 1.72;
}

.split-media,
.about-media {
  overflow: hidden;
  aspect-ratio: 16/11;
}

.split-media img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  transition: transform 0.45s ease;
}

.highlight-list,
.trust-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
}

.fact-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.46rem;
  flex-shrink: 0;
}

.featured-projects {
  display: grid;
  gap: 1rem;
}

.featured-project {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-project:hover,
.project-card:hover,
.card:hover,
.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.featured-image,
.project-media {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.featured-image img,
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  transition: transform 0.45s ease;
}

.featured-copy,
.project-content {
  padding: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.project-meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: var(--primary);
}

.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.3rem;
  font-weight: 700;
  color: #114775;
  border-bottom: 1px solid rgba(17, 71, 117, 0.32);
}

.bullet-list {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.bullet-list.compact {
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline-item {
  border: 1px solid #cfd9e6;
  border-left: 3px solid var(--primary);
  border-radius: 12px;
  background: #fff;
  padding: 0.95rem 1rem;
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: #123e66;
}

.value-card {
  border: 1px solid rgba(177, 197, 220, 0.33);
  border-radius: 12px;
  background: rgba(7, 19, 32, 0.42);
  padding: 1.1rem;
}

.value-card h3 {
  color: #fff;
}

.cta-band {
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(140deg, #f7fbff 0%, #edf4fd 70%, #f8f1e6 100%);
}

.cta-band-dark {
  background: rgba(7, 19, 32, 0.45);
  border-color: rgba(179, 201, 226, 0.34);
}

.contact-layout {
  align-items: start;
}

.contact-box {
  padding: 1.25rem;
}

.contact-box p {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.contact-box strong {
  color: var(--text);
}

.form-grid {
  display: grid;
  gap: 0.7rem;
}

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

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #cfd9e7;
  padding: 0.72rem 0.82rem;
  background: #fff;
  color: var(--text);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #89a9cc;
  box-shadow: 0 0 0 3px rgba(109, 150, 196, 0.17);
}

.notice {
  display: none;
  border-radius: 10px;
  border: 1px solid #b7d7c8;
  background: #e7f6ef;
  color: #14503f;
  padding: 0.62rem 0.7rem;
  font-size: 0.92rem;
}

.notice.show {
  display: block;
}

.micro-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  color: #e7f1ff;
  background:
    linear-gradient(180deg, #0e1d2f 0%, #0b1726 100%);
  padding: 0;
  border-top: 1px solid rgba(189, 210, 234, 0.08);
}

.footer-shell {
  width: min(100% - 2rem, 960px);
  margin-inline: auto;
  padding: 2.35rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(160px, 0.85fr);
  gap: 1.05rem 1.3rem;
  align-items: start;
  padding-bottom: 1.35rem;
}

.footer-brand,
.footer-contact,
.footer-nav {
  min-width: 0;
}

.footer-brand {
  padding-right: 0.9rem;
}

.footer-title {
  color: #fff;
  margin-bottom: 0.78rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand .footer-title {
  margin-bottom: 0.72rem;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.footer-lead {
  max-width: 33ch;
  color: rgba(231, 241, 255, 0.82);
  font-size: 0.99rem;
  line-height: 1.68;
}

.footer-grid p {
  color: rgba(231, 241, 255, 0.76);
}

.footer-contact-list {
  display: grid;
  gap: 0.62rem;
}

.footer-contact-list p {
  margin: 0;
  line-height: 1.55;
}

.footer-contact-list a {
  color: rgba(241, 247, 255, 0.92);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.36rem;
}

.footer-links a {
  color: rgba(231, 241, 255, 0.84);
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #ffffff;
  border-color: rgba(214, 230, 248, 0.38);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.9rem 0 0.95rem;
  border-top: 1px solid rgba(196, 217, 240, 0.1);
  background: rgba(6, 15, 24, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: rgba(231, 241, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-bottom-left {
  color: rgba(231, 241, 255, 0.66);
}

.footer-bottom-right {
  text-align: right;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-panel,
  .about,
  .featured-project,
  .grid-3,
  .value-grid,
  .footer-grid,
  .service-overview-grid,
  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-image img {
    min-height: 220px;
  }

  .footer-shell {
    width: min(100% - 2rem, 760px);
    padding-top: 2.3rem;
  }

  .footer-brand,
  .footer-contact,
  .footer-nav {
    padding-right: 0;
  }

  .footer-lead {
    max-width: 40ch;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.45rem);
    z-index: 80;
    border: 1px solid #d2deeb;
    border-radius: 12px;
    background: rgba(248, 251, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links a {
    padding: 0.68rem 0.74rem;
  }

  .nav-links .nav-cta {
    min-height: 44px;
    padding: 0.82rem 0.96rem;
  }

  .hero,
  .section,
  .page-header {
    padding: 4.3rem 0;
  }

  .hero-grid {
    gap: 1.4rem;
    align-items: start;
  }

  .hero-main {
    gap: 0.78rem;
  }

  .hero .hero-main.reveal,
  .hero .hero-main.reveal.is-visible,
  .hero .hero-panel.reveal,
  .hero .hero-panel.reveal.is-visible,
  .hero [data-hero-seq] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-panel {
    gap: 0.9rem;
  }

  .hero-media {
    min-height: 220px;
  }

  .cta-band {
    padding: 1.4rem;
  }

  .site-footer {
    text-align: left;
  }

  .footer-shell {
    padding-top: 2.1rem;
  }

  .footer-grid {
    gap: 1.05rem;
  }

  .footer-bottom {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.95rem;
  }

  .footer-bottom-right {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .actions {
    width: 100%;
  }

  .hero-main h1 {
    max-width: 13.8ch;
    line-height: 0.97;
  }

  .actions .btn {
    width: 100%;
  }
}

.hero-grid-balanced {
  align-items: center;
}

.hero-title {
  text-shadow: 0 8px 20px rgba(6, 19, 31, 0.16);
}

.hero-panel-refined {
  padding: 1.16rem;
  gap: 1.05rem;
}

.hero-services {
  align-items: flex-start;
}

.hero-trust-strip {
  padding-top: 0.1rem;
}

.spec-list-neutral li {
  background: rgba(7, 20, 34, 0.34);
}

.spec-list-neutral .kicker {
  color: #c8def7;
  margin-bottom: 0.35rem;
}

.spec-list-neutral p {
  color: rgba(231, 241, 255, 0.86);
}

.home-trust .value-card-light {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border-left: 3px solid #98b6d9;
}

.section-flow {
  background:
    radial-gradient(circle at 10% 20%, rgba(16, 98, 154, 0.08), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(213, 155, 66, 0.08), transparent 42%);
}

.hero [data-hero-seq] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
}

html.ui-ready .hero [data-hero-seq] {
  opacity: 1;
  transform: translateY(0);
}

.hero .btn,
.card,
.featured-project,
.project-card {
  transition-duration: 0.3s;
}

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

.card,
.featured-project,
.project-card,
.value-card-light {
  position: relative;
  overflow: hidden;
}

.card::before,
.featured-project::before,
.project-card::before,
.value-card-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 38%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before,
.featured-project:hover::before,
.project-card:hover::before,
.value-card-light:hover::before {
  opacity: 1;
}

@media (min-width: 1180px) {
  .hero-grid-balanced {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 2.6rem;
  }

  .hero-main {
    padding-right: 0.35rem;
  }

  .hero-main h1 {
    max-width: 13.2ch;
  }

  .hero-main .lead {
    max-width: 47ch;
  }

  .featured-project {
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
  }
}

.site-header .nav-links a.nav-cta,
.site-header .nav-links a.nav-cta:visited,
.site-header .nav-links a.nav-cta:hover,
.site-header .nav-links a.nav-cta:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.site-header .nav-links a.nav-cta {
  background: linear-gradient(135deg, #0f5f98, #083c60) !important;
  border: 1px solid rgba(191, 215, 238, 0.2) !important;
}

.site-header .nav-links a.nav-cta:hover,
.site-header .nav-links a.nav-cta:focus-visible {
  background: linear-gradient(135deg, #1370b2, #0a476f) !important;
  border-color: rgba(214, 230, 248, 0.24) !important;
}

@media (max-width: 860px) {
  .hero,
  .hero-grid,
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .hero {
    overflow: visible;
    padding-top: 2.2rem;
    padding-bottom: 2.8rem;
  }

  .hero-grid,
  .hero-grid-balanced {
    gap: 1.35rem !important;
    align-items: start !important;
  }

  .hero-main {
    order: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .hero-main > * + * {
    margin-top: 0.9rem;
  }

  .hero-main *,
  .hero [data-hero-seq],
  .hero-main.reveal,
  .hero-main.reveal.is-visible,
  .hero-main .reveal,
  .hero-main .reveal.is-visible {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-main .lead,
  .hero-main h1,
  .hero-main .hero-tags,
  .hero-main .hero-actions,
  .hero-main .hero-signature-strip {
    position: static !important;
    inset: auto !important;
  }

  .hero-panel {
    order: 2;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .hero-panel,
  .hero-panel.reveal,
  .hero-panel.reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-media {
    min-height: 180px !important;
  }
}

.section-dark .about-panel,
.section-dark .about-panel * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.section-dark .about-panel .kicker {
  color: #0f5f98 !important;
  -webkit-text-fill-color: #0f5f98 !important;
}

.section-dark .about-panel h2 {
  color: #13263d !important;
  -webkit-text-fill-color: #13263d !important;
}

.section-dark .about-panel p,
.section-dark .about-panel .lead {
  color: #455a74 !important;
  -webkit-text-fill-color: #455a74 !important;
}

.section-dark .about-panel {
  width: 100%;
}

.section-dark .about-panel h2 {
  max-width: 15.6ch !important;
  font-size: clamp(2.1rem, 3.35vw, 3.1rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.032em !important;
}

.section-dark .about-panel p,
.section-dark .about-panel .lead {
  max-width: 45ch !important;
  line-height: 1.68 !important;
}
