:root {
  --ink: #111817;
  --petroleum: #123f46;
  --petroleum-2: #0a2b31;
  --green: #07583f;
  --green-soft: #dce9df;
  --gold: #c7a15a;
  --gold-light: #ead6a4;
  --purple: #78418a;
  --paper: #f8f5ed;
  --paper-2: #eee7d9;
  --white: #fffdf8;
  --muted: #68706d;
  --line: rgba(17, 24, 23, 0.14);
  --dark-line: rgba(255, 253, 248, 0.15);
  --shadow: 0 26px 70px rgba(12, 31, 34, 0.22);
}

* {
  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;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  width: 100%;
  max-width: 100vw;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 43, 49, 0.9), rgba(10, 43, 49, 0.52) 64%, transparent);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-bottom: 1px solid var(--dark-line);
  background: rgba(10, 43, 49, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 68px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav a {
  padding: 10px 10px;
  border-radius: 6px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 253, 248, 0.1);
}

.language-switcher {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  margin-left: 10px;
  padding: 4px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.06);
}

.language-switcher a {
  min-width: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  line-height: 1;
  text-align: center;
}

.language-switcher a:hover {
  color: var(--white);
  background: rgba(255, 253, 248, 0.12);
}

.language-switcher a[aria-current="page"] {
  color: var(--petroleum-2);
  background: var(--gold-light);
}

.menu-button {
  display: none;
  flex: 0 0 44px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.08);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--petroleum-2);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  left: 48%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  filter: saturate(0.96) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 31, 35, 0.98), rgba(7, 31, 35, 0.94) 38%, rgba(7, 31, 35, 0.34) 78%),
    linear-gradient(0deg, rgba(7, 31, 35, 0.96), rgba(7, 31, 35, 0.04) 50%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: 18vh;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  border: 1px solid rgba(234, 214, 164, 0.24);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 410px);
  gap: clamp(30px, 6vw, 86px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 136px 0 164px;
}

.hero-copy,
.hero-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.2vw, 6.35rem);
  line-height: 0.96;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.8vw, 5.15rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions,
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.button-primary {
  color: var(--petroleum-2);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 36px rgba(199, 161, 90, 0.22);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.3);
  background: rgba(255, 253, 248, 0.08);
}

.hero-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(234, 214, 164, 0.24);
  border-radius: 8px;
  background: rgba(9, 35, 39, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-logo {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.panel-logo img {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.panel-logo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  line-height: 1;
}

.hero-panel p:last-child {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
}

.hero-signals {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(234, 214, 164, 0.28);
  background: rgba(7, 31, 35, 0.9);
  backdrop-filter: blur(18px);
}

.hero-signals div {
  position: relative;
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 24px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--dark-line);
  overflow: hidden;
}

.hero-signals div::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-signals div:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(199, 161, 90, 0.78), transparent 62%);
}

.hero-signals div:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(7, 88, 63, 0.84), transparent 62%);
}

.hero-signals div:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(120, 65, 138, 0.82), transparent 62%);
}

.hero-signals div::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
}

.hero-signals div:nth-child(2)::after {
  background: #3f9b75;
}

.hero-signals div:nth-child(3)::after {
  background: var(--purple);
}

.hero-signals div:last-child {
  border-right: 0;
}

.hero-signals span {
  position: relative;
  display: block;
  color: rgba(234, 214, 164, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.2vw, 3.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
}

.hero-signals strong {
  position: relative;
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(1.12rem, 1.9vw, 1.48rem);
  letter-spacing: 0.02em;
}

.intro-band,
.services,
.trust,
.outcomes,
.assessment,
.contact,
.leadership,
.team-mapping,
.solution-focus,
.page-hero,
.about-page,
.about-detail,
.contact-page {
  padding: clamp(72px, 10vw, 134px) clamp(18px, 5vw, 76px);
}

.legal-page {
  padding: clamp(118px, 14vw, 176px) clamp(18px, 5vw, 76px) clamp(72px, 10vw, 134px);
  background: var(--paper);
}

.legal-intro {
  max-width: 920px;
}

.legal-intro h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.legal-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
}

.legal-intro span {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-weight: 900;
}

.legal-sections {
  display: grid;
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
  border: 1px solid var(--line);
}

.legal-sections article {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.legal-sections h2 {
  margin: 0;
  color: var(--petroleum-2);
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
}

.legal-sections p {
  margin: 0;
  color: var(--muted);
}

main > section:not(.hero):first-child {
  padding-top: clamp(118px, 14vw, 176px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.5fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  color: var(--petroleum-2);
  background: var(--paper);
}

.section-heading {
  max-width: 920px;
}

.section-heading .eyebrow,
.services .eyebrow,
.leadership .eyebrow,
.trust .eyebrow,
.outcomes .eyebrow,
.assessment .eyebrow,
.contact .eyebrow,
.page-hero .eyebrow,
.about-page .eyebrow,
.contact-page .eyebrow,
.team-mapping .eyebrow {
  color: var(--green);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.intro-band > .section-lead {
  position: relative;
  max-width: 560px;
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  border-left: 3px solid var(--gold);
  color: var(--petroleum-2);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(238, 231, 217, 0.56));
  box-shadow: 0 22px 54px rgba(12, 31, 34, 0.08);
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.68;
}

.intro-band > .section-lead::before {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 20px;
  background: var(--gold);
}

.services {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 43, 49, 0.96), rgba(18, 63, 70, 0.9) 55%, rgba(30, 39, 63, 0.84)),
    url("assets/spiriton-bg-network.png") center / cover;
}

.services .section-heading .eyebrow,
.services .section-heading h2 {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
}

.service-card:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(199, 161, 90, 0.72), transparent 58%);
}

.service-card:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(7, 88, 63, 0.78), transparent 58%);
}

.service-card:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(120, 65, 138, 0.76), transparent 58%);
}

.service-card > * {
  position: relative;
}

.service-number {
  display: grid;
  gap: 8px;
  color: var(--gold);
}

.service-number b {
  color: rgba(234, 214, 164, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.2vw, 3.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
}

.service-number em {
  color: var(--gold);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  font-weight: 500;
}

.service-card p {
  color: rgba(255, 253, 248, 0.68);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 214, 164, 0.48);
}

.solution-detail {
  margin-top: auto;
  padding-top: 22px;
}

.solution-detail summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
  color: var(--gold-light);
  font-weight: 900;
  border-bottom: 1px solid rgba(234, 214, 164, 0.48);
}

.solution-detail summary::-webkit-details-marker {
  display: none;
}

.solution-detail summary::after {
  content: " +";
}

.solution-detail[open] summary::after {
  content: " -";
}

.solution-detail > div {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(234, 214, 164, 0.2);
  border-radius: 8px;
  background: rgba(10, 43, 49, 0.46);
}

.solution-detail p,
.solution-focus p {
  color: rgba(255, 253, 248, 0.76);
}

.solution-detail ul,
.solution-focus ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(255, 253, 248, 0.78);
}

.solution-detail li + li,
.solution-focus li + li {
  margin-top: 8px;
}

.solution-method {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--solution-accent, var(--gold));
  background: rgba(255, 253, 248, 0.07);
}

.solution-method h2,
.solution-method h4 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.8vw, 1.78rem);
  font-weight: 500;
}

.solution-method p {
  margin: 0;
}

.solution-method strong {
  display: block;
  margin-top: 16px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.25;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 24px;
}

.solution-actions a {
  margin-top: 0;
}

.solution-actions .catalog-download {
  display: inline-grid;
  gap: 2px;
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid rgba(234, 214, 164, 0.72);
  border-radius: 8px;
  color: var(--petroleum-2);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(199, 161, 90, 0.26);
  text-decoration: none;
}

.solution-actions .catalog-download span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solution-actions .catalog-download strong {
  font-size: 1rem;
  font-weight: 900;
}

.solution-actions .text-link {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid rgba(234, 214, 164, 0.62);
  border-radius: 8px;
  color: var(--gold-light);
  background: rgba(6, 18, 20, 0.78);
  box-shadow: inset 0 1px 0 rgba(234, 214, 164, 0.12), 0 14px 32px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  text-decoration: none;
}

.solution-actions .text-link:hover {
  color: var(--gold);
  border-color: rgba(234, 214, 164, 0.9);
  background: rgba(3, 12, 14, 0.92);
}

.solution-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  color: var(--white);
  background: linear-gradient(135deg, var(--petroleum-2), var(--petroleum) 55%, #1e273f);
}

.solution-focus h2 {
  color: var(--white);
}

.solution-focus .solution-actions {
  grid-column: 1 / -1;
}

.solution-page {
  --solution-accent: var(--gold);
  --solution-accent-rgb: 199, 161, 90;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(128px, 14vw, 190px) clamp(18px, 5vw, 76px) clamp(72px, 10vw, 134px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 43, 49, 0.96), rgba(18, 63, 70, 0.9) 55%, rgba(30, 39, 63, 0.84)),
    url("assets/spiriton-bg-flow-horizon.png") center / cover;
}

.solution-page-main,
.solution-page-detail {
  min-width: 0;
  max-width: 100%;
}

.solution-page-1 {
  --solution-accent: var(--gold);
  --solution-accent-rgb: 199, 161, 90;
  background:
    linear-gradient(135deg, rgba(10, 43, 49, 0.96), rgba(18, 63, 70, 0.84) 54%, rgba(57, 31, 66, 0.88)),
    url("assets/spiriton-bg-momentum.png") center / cover;
}

.solution-page-2 {
  --solution-accent: #3f9b75;
  --solution-accent-rgb: 63, 155, 117;
  background:
    linear-gradient(90deg, rgba(10, 43, 49, 0.98), rgba(7, 88, 63, 0.84) 55%, rgba(30, 39, 63, 0.72)),
    url("assets/spiriton-bg-network.png") center / cover;
}

.solution-page-3 {
  --solution-accent: var(--purple);
  --solution-accent-rgb: 120, 65, 138;
  background:
    linear-gradient(135deg, rgba(10, 43, 49, 0.96), rgba(18, 63, 70, 0.9) 56%, rgba(88, 69, 38, 0.78)),
    url("assets/spiriton-bg-business-graph.png") center / cover;
}

.solution-page h1 {
  max-width: 860px;
  margin-top: 34px;
  color: var(--white);
  font-size: clamp(3.2rem, 5.8vw, 6.6rem);
  line-height: 0.94;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.solution-page .service-number b {
  color: var(--solution-accent);
}

.solution-page .service-number em {
  color: var(--solution-accent);
}

.solution-lead {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.solution-page-detail {
  position: relative;
  padding: clamp(34px, 4.1vw, 50px);
  border: 1px solid rgba(var(--solution-accent-rgb), 0.62);
  border-left: 6px solid var(--solution-accent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--solution-accent-rgb), 0.2), transparent 46%),
    linear-gradient(135deg, rgba(2, 12, 15, 0.95), rgba(7, 27, 31, 0.9));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.solution-page-detail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--solution-accent), rgba(var(--solution-accent-rgb), 0));
}

.solution-page-detail p {
  margin: 0;
  color: rgba(255, 253, 248, 0.94);
  font-size: clamp(1.16rem, 1.42vw, 1.34rem);
  line-height: 1.66;
}

.solution-page-detail ul {
  margin: 26px 0 0;
  padding-left: 0;
  color: rgba(255, 253, 248, 0.94);
  font-size: clamp(1.04rem, 1.18vw, 1.14rem);
  list-style: none;
}

.solution-page-detail li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.solution-page-detail li + li {
  margin-top: 12px;
}

.solution-page-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--solution-accent);
  box-shadow: 0 0 18px rgba(var(--solution-accent-rgb), 0.68);
}

.solution-page-detail .solution-actions {
  padding-top: 24px;
  border-top: 1px solid rgba(234, 214, 164, 0.16);
}

.solution-page-detail .solution-method {
  margin-top: 26px;
  border-left-color: var(--solution-accent);
  background:
    linear-gradient(135deg, rgba(var(--solution-accent-rgb), 0.16), rgba(255, 253, 248, 0.05));
}

.solution-page-detail .solution-method h2,
.solution-page-detail .solution-method h4 {
  color: var(--gold-light);
}

.solution-page-detail .solution-method p {
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.55;
}

.solution-page-detail .solution-method strong {
  color: var(--gold-light);
}

.solution-page-main .solution-actions {
  margin-top: 34px;
}

.page-section {
  min-height: 100svh;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  background: var(--paper);
}

.page-hero .eyebrow .service-number {
  margin-bottom: 8px;
}

.page-hero .eyebrow .service-number b {
  color: var(--green);
}

.page-hero .eyebrow .service-number em {
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6.8vw, 6.4rem);
}

.page-hero > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.team-mapping {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 43, 49, 0.96), rgba(7, 88, 63, 0.86)),
    url("assets/spiriton-bg-network.png") center / cover;
}

.team-mapping .eyebrow,
.team-mapping h2 {
  color: var(--white);
}

.team-mapping .section-lead {
  max-width: 790px;
  color: rgba(255, 253, 248, 0.72);
}

.signature-line {
  max-width: 760px;
  margin: 34px 0;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.16;
}

.leadership {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--white);
}

.leadership-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.leadership-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.14rem;
}

.authority-line {
  color: var(--green) !important;
  font-weight: 900;
}

.button-secondary.dark {
  width: fit-content;
  color: var(--petroleum-2);
  border-color: var(--line);
  background: var(--white);
}

.proof-list {
  display: grid;
  gap: 1px;
  margin: 38px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 22px;
  background: var(--white);
}

.proof-list dt {
  color: var(--petroleum);
  font-weight: 900;
}

.proof-list dd {
  margin: 0;
  color: var(--muted);
}

.trust {
  background: var(--green-soft);
}

.trust .section-lead {
  max-width: 780px;
  margin-top: 24px;
}

.logo-label {
  margin: 52px 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.logo-grid,
.partnership-strip,
.testimonial-grid {
  display: grid;
  gap: 1px;
  background: rgba(7, 88, 63, 0.16);
  border: 1px solid rgba(7, 88, 63, 0.16);
}

.logo-grid {
  grid-template-columns: repeat(5, 1fr);
}

.partnership-strip {
  grid-template-columns: repeat(2, 1fr);
}

.logo-grid span,
.partnership-strip span {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 18px;
  color: var(--petroleum-2);
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 28px;
  background: var(--white);
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--petroleum-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}

.testimonial-grid figcaption {
  margin-top: 26px;
  color: var(--muted);
}

.testimonial-grid figcaption strong,
.testimonial-grid figcaption span {
  display: block;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: rgba(7, 88, 63, 0.16);
  border: 1px solid rgba(7, 88, 63, 0.16);
}

.trust-row div {
  min-height: 190px;
  padding: 28px;
  background: #f4f8f1;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.trust-row span {
  margin-top: 18px;
  color: var(--muted);
}

.outcomes {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 40, 45, 0.96), rgba(7, 53, 60, 0.88) 52%, rgba(6, 30, 36, 0.94)),
    url("assets/spiriton-bg-momentum.png") center / cover;
  overflow: hidden;
}

.outcomes::before,
.outcomes::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.outcomes::before {
  right: -110px;
  top: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199, 161, 90, 0.42);
  border-radius: 50%;
  box-shadow:
    -28px 28px 0 -26px rgba(199, 161, 90, 0.34),
    -54px 54px 0 -52px rgba(199, 161, 90, 0.26);
}

.outcomes::after {
  left: 0;
  right: 0;
  bottom: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 161, 90, 0), rgba(199, 161, 90, 0.72), rgba(199, 161, 90, 0));
  box-shadow: 0 0 18px rgba(234, 214, 164, 0.7);
}

.outcomes .section-heading .eyebrow,
.outcomes .section-heading h2 {
  color: var(--white);
}

.outcomes .section-heading .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.34em;
}

.outcomes .section-heading .eyebrow::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 16px;
  background: var(--gold);
}

.outcomes .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.85rem, 5.2vw, 5.6rem);
  line-height: 0.98;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.outcome-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.outcome-flow article {
  position: relative;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(199, 161, 90, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.045), rgba(255, 253, 248, 0.02)),
    rgba(4, 47, 54, 0.82);
  box-shadow: inset 0 1px 0 rgba(234, 214, 164, 0.12), 0 24px 70px rgba(0, 0, 0, 0.18);
}

.outcome-flow span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 3vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.outcome-flow strong {
  display: block;
  margin-top: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(199, 161, 90, 0.58);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.outcome-flow h3 {
  max-width: 340px;
  margin: 22px 0 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 900;
  line-height: 1.22;
}

.outcome-flow p {
  max-width: 340px;
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1rem;
}

.assessment {
  background: var(--paper);
}

.assessment-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 42px;
}

.assessment-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.assessment-points {
  display: grid;
  gap: 1px;
  background: rgba(7, 88, 63, 0.16);
  border: 1px solid rgba(7, 88, 63, 0.16);
}

.assessment-points span {
  display: block;
  padding: 16px 18px;
  color: var(--petroleum-2);
  background: var(--white);
  font-weight: 900;
}

.assessment-frame-wrap {
  overflow: hidden;
  border: 1px solid rgba(7, 88, 63, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.assessment-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.assessment-fallback {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.assessment-fallback a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 88, 63, 0.28);
}

.contact {
  justify-content: space-between;
  gap: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 24, 23, 0.97), rgba(10, 43, 49, 0.91) 58%, rgba(36, 22, 48, 0.86)),
    url("assets/spiriton-bg-flow-horizon.png") center / cover;
}

.contact h2 {
  max-width: 850px;
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.08rem;
}

.about-page,
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--paper);
}

.about-page h1,
.contact-page h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.about-page p,
.contact-page p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.about-signature {
  position: relative;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 24px 28px 24px 32px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--petroleum-2);
  background:
    linear-gradient(135deg, rgba(199, 161, 90, 0.16), rgba(255, 253, 248, 0.86)),
    var(--white);
  box-shadow: 0 18px 44px rgba(2, 42, 48, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 1.45vw, 1.38rem);
  font-weight: 600;
  line-height: 1.48;
}

.about-signature::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 52%;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(199, 161, 90, 0));
}

.flow-inline-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  margin: 30px 0;
}

.flow-inline-mark::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 161, 90, 0.72), rgba(199, 161, 90, 0));
}

.flow-inline-mark img {
  width: 96px;
  height: auto;
  opacity: 0.82;
  filter: drop-shadow(0 12px 28px rgba(7, 88, 63, 0.14));
}

.about-page img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-detail > div {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
}

.about-detail h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.about-detail li {
  margin: 10px 0;
  color: var(--muted);
}

.profile-detail {
  gap: 18px;
  background:
    radial-gradient(circle at 8% 12%, rgba(199, 161, 90, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(236, 232, 222, 0.92));
  border: 0;
}

.profile-detail > div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 90, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 24px 60px rgba(2, 42, 48, 0.08);
}

.profile-detail > div::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% 36%;
  height: 190px;
  background: url("/spiriton-premium-concept/assets/spiriton-logo-horizontal.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.expertise-panel > p,
.credentials-panel > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.expertise-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.expertise-list article {
  position: relative;
  z-index: 1;
  padding: 22px 24px;
  border: 1px solid rgba(7, 88, 63, 0.14);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.expertise-list span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 0.9;
}

.expertise-list h3 {
  margin: 14px 0 8px;
  color: var(--petroleum-2);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.expertise-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.expertise-list strong {
  color: var(--petroleum-2);
  font-weight: 900;
}

.certification-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.certification-logos img {
  width: 100%;
  height: 96px;
  padding: 18px;
  object-fit: contain;
  border: 1px solid rgba(199, 161, 90, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(2, 42, 48, 0.07);
}

.credentials-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.credentials-panel li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
}

.credentials-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.challenge-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.challenge-form label {
  display: grid;
  gap: 8px;
  color: var(--petroleum-2);
  font-size: 0.88rem;
  font-weight: 900;
}

.challenge-form input,
.challenge-form select,
.challenge-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.challenge-form textarea {
  min-height: 128px;
  resize: vertical;
}

.span-2,
.challenge-form .button,
.form-success {
  grid-column: 1 / -1;
}

.form-success {
  margin: 0;
  color: var(--green) !important;
  font-weight: 900;
}

.site-footer {
  padding: 42px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--ink);
}

.site-footer,
.footer-brand,
.footer-nav,
.footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-footer {
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
.footer-company,
.footer-bottom {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.86rem;
}

.footer-company {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.footer-company a {
  color: inherit;
  text-decoration: none;
}

.footer-nav,
.footer-bottom {
  flex-wrap: wrap;
}

.footer-nav a,
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.cookie-notice {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: min(620px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(234, 214, 164, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(10, 43, 49, 0.96);
  box-shadow: var(--shadow);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.9rem;
}

.cookie-notice p a {
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 214, 164, 0.42);
}

.cookie-notice > div {
  display: flex;
  gap: 10px;
}

.cookie-notice .button {
  min-height: 44px;
  padding: 12px 16px;
}

@media (max-width: 940px) {
  .menu-button {
    display: block;
    position: fixed;
    top: 18px;
    right: auto;
    left: min(calc(100vw - 64px), 310px);
    z-index: 25;
    border-color: rgba(234, 214, 164, 0.4);
    background: rgba(10, 43, 49, 0.78);
    backdrop-filter: blur(12px);
  }

  .nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    background: rgba(10, 43, 49, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .language-switcher {
    align-self: flex-start;
    margin: 8px 0 0;
  }

  .language-switcher a {
    padding: 9px 12px;
  }

  .hero-inner,
  .intro-band,
  .assessment-copy,
  .page-hero,
  .about-page,
  .about-detail,
  .contact-page,
  .legal-sections article,
  .solution-page,
  .solution-focus,
  .leadership {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 124px;
  }

  .intro-band > .section-lead {
    max-width: 680px;
  }

  .hero-image {
    left: 0;
  }

  .hero-panel {
    max-width: 560px;
  }

  .service-grid,
  .logo-grid,
  .partnership-strip,
  .testimonial-grid,
  .trust-row,
  .outcome-flow {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card h3 {
    margin-top: 34px;
  }

  .solution-page {
    min-height: auto;
    align-items: start;
    gap: 30px;
  }

  .solution-page h1 {
    max-width: 680px;
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .trust-row div,
  .outcome-flow article {
    min-height: auto;
  }

  .assessment-frame-wrap iframe {
    min-height: 820px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 58px;
    height: 32px;
  }

  body {
    font-size: 0.96rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 2.75rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 31, 35, 0.97), rgba(7, 31, 35, 0.76)),
      linear-gradient(0deg, rgba(7, 31, 35, 0.98), rgba(7, 31, 35, 0.24));
  }

  .page-hero h1,
  .about-page h1,
  .contact-page h1,
  .solution-page h1 {
    font-size: clamp(2.3rem, 11vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-signals {
    position: relative;
    grid-template-columns: 1fr;
  }

  .hero-signals div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .hero-signals span {
    font-size: 2.4rem;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding-bottom: 54px;
  }

  .hero-copy,
  .hero-panel {
    max-width: min(354px, calc(100vw - 36px));
  }

  .hero-copy h1,
  .hero-lead,
  .hero-panel p {
    max-width: min(318px, calc(100vw - 72px));
  }

  .solution-page {
    gap: 24px;
    overflow: hidden;
    padding-inline: 24px;
  }

  .solution-page-main,
  .solution-page-detail,
  .solution-lead,
  .solution-method {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .solution-lead,
  .solution-page-detail p,
  .solution-page-detail ul,
  .solution-method {
    max-width: 36ch;
  }

  .solution-page-detail {
    padding: 24px;
  }

  .solution-lead {
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .solution-page-detail p {
    font-size: 1.04rem;
    overflow-wrap: anywhere;
  }

  .solution-page-detail li {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .solution-actions,
  .solution-actions .catalog-download {
    width: 100%;
  }

  .solution-actions .catalog-download {
    min-width: 0;
    max-width: 330px;
  }

  .outcomes-visual {
    width: 100%;
    opacity: 0.08;
  }

  .outcomes .section-heading,
  .outcome-flow,
  .outcome-flow article {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .outcomes .section-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 9.2vw, 2.85rem);
    line-height: 1;
  }

  .outcome-flow {
    gap: 12px;
    margin-top: 30px;
  }

  .outcome-flow article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
    overflow: hidden;
  }

  .outcome-flow span {
    font-size: 2.35rem;
  }

  .outcome-flow strong {
    margin-top: 20px;
    padding-bottom: 14px;
    font-size: 1.72rem;
  }

  .outcome-flow h3,
  .outcome-flow p {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .contact {
    align-items: stretch;
  }

  .button {
    width: 100%;
    max-width: calc(100vw - 36px);
    padding-inline: 14px;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .panel-logo {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-band > .section-lead {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .flow-inline-mark {
    max-width: 100%;
    margin: 24px 0;
  }

  .flow-inline-mark img {
    width: 78px;
  }

  .intro-band,
  .services,
  .trust,
  .outcomes,
  .assessment,
  .contact,
  .team-mapping,
  .solution-focus,
  .solution-page,
  .legal-page,
  .page-hero,
  .about-page,
  .about-detail,
  .contact-page,
  .leadership {
    padding-block: 70px;
  }

  .solution-page {
    padding-top: 116px;
  }

  main > section:not(.hero):first-child {
    padding-top: 112px;
  }

  .challenge-form {
    grid-template-columns: 1fr;
  }

  .profile-detail {
    gap: 12px;
  }

  .expertise-list article {
    padding: 20px;
  }

  .certification-logos {
    grid-template-columns: 1fr;
  }

  .certification-logos img {
    height: 86px;
  }

  .site-footer,
  .footer-brand,
  .footer-nav,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
    padding: 14px;
    max-height: 42svh;
    overflow-y: auto;
  }

  .cookie-notice p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .cookie-notice > div {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .cookie-notice .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 42px;
  }

  .proof-list div {
    grid-template-columns: 1fr;
  }
}

/* Small-screen defaults shared by all three languages. */
main, main section, main section > *, .site-footer > * { min-width: 0; }
h1, h2, h3, p, li, a { overflow-wrap: break-word; }
img, iframe { max-width: 100%; }
input, select, textarea { min-width: 0; max-width: 100%; font-size: 16px; }
button, .button, .language-switcher a { min-height: 44px; }
.certification-logos {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.certification-logos img {
  width: 100%;
  height: 180px;
  padding: 12px;
  object-fit: contain;
}
@media (min-width: 480px) {
  .certification-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certification-logos img { height: 190px; }
}
@media (min-width: 941px) {
  .certification-logos img { height: 200px; }
}
@media (max-width: 940px) {
  .menu-button { left: auto; right: 16px; width: 48px; height: 48px; }
  .site-header { padding-right: 80px; }
  .nav a { min-height: 44px; }
}
@media (max-width: 640px) {
  .about-detail > div { padding: 22px 16px; }
  .hero-actions, .solution-actions { flex-wrap: wrap; }
  .contact-page, .about-page, .legal-page { overflow-wrap: anywhere; }
  .challenge-form .span-2 { grid-column: 1 / -1; }
  .challenge-form input, .challenge-form textarea, .challenge-form select { font-size: 16px; }
  .footer-nav a { display: inline-flex; align-items: center; min-height: 44px; }
}

/* Original Spiriton identity; compact-screen defaults. */
.brand .brand-logo { display:block; width:200px; height:50px; max-width:100%; object-fit:contain; background:white; border-radius:5px; }
.brand { min-width:0; flex-shrink:0; }
.footer-brand .footer-logo { display:block; width:156px; height:156px; object-fit:contain; background:white; border-radius:8px; }
@media(min-width:641px){ .brand .brand-logo{width:240px;height:60px;} .footer-brand .footer-logo{width:180px;height:180px;} }
@media(min-width:941px){ .site-header{gap:20px;} .nav{gap:clamp(10px,1.2vw,22px);} }

.brand .brand-logo {width:96px;height:68px;background:transparent;border-radius:0;}
.footer-brand .footer-logo {width:180px;height:auto;background:transparent;border-radius:0;}
@media(min-width:641px){.brand .brand-logo{width:114px;height:80px;}}

/* Approved light identity, with more legible sizing. */
.brand .brand-logo { width:118px; height:84px; }
.footer-brand .footer-logo { width:210px; height:auto; }
@media(min-width:641px){.brand .brand-logo {width:132px;height:94px;}.footer-brand .footer-logo{width:240px;}}
