:root {
  --ink: #061610;
  --ink-2: #0c2119;
  --pine: #0f3327;
  --emerald: #176447;
  --jade: #50d693;
  --mint: #c9f7dd;
  --gold: #d5af52;
  --gold-2: #f1d48a;
  --paper: #f7f3e9;
  --paper-2: #ede3cf;
  --charcoal: #17201c;
  --clay: #c26c4e;
  --sky: #9fc7cf;
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(6, 22, 16, .14);
  --shadow: 0 22px 70px rgba(0, 0, 0, .28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(80, 214, 147, .05) 0 12%, transparent 12% 40%, rgba(213, 175, 82, .05) 40% 52%, transparent 52%),
    linear-gradient(180deg, #061610 0%, #0a1b14 55%, #061610 100%);
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0%, rgba(80, 214, 147, .08) 26%, transparent 46%),
    linear-gradient(240deg, transparent 5%, rgba(213, 175, 82, .12) 45%, transparent 68%);
  animation: sheen 16s ease-in-out infinite alternate;
}

@keyframes sheen {
  from { transform: translate3d(-2%, -1%, 0) scale(1); opacity: .75; }
  to { transform: translate3d(2%, 1%, 0) scale(1.05); opacity: 1; }
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  max-width: 900px;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--gold-2);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 22, 16, .9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .24);
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .82rem;
  color: rgba(247, 243, 233, .78);
}

.top-strip span,
.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-strip .icon {
  width: 15px;
  height: 15px;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 12px 28px rgba(80, 214, 147, .24));
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand strong {
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand em {
  font-style: normal;
  color: var(--gold-2);
  font-size: .9rem;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
}

.nav-link {
  padding: 9px 12px;
  color: rgba(247, 243, 233, .78);
  font-size: .92rem;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: var(--gold-2);
}

.nav-cta,
.mobile-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(241, 212, 138, .6);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #071611;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(213, 175, 82, .2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.nav-cta:hover,
.mobile-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(213, 175, 82, .28);
  filter: saturate(1.08);
}

.button--ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: none;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(6, 22, 16, .9);
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  margin: 0 auto 14px;
  width: min(var(--max), calc(100% - 40px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(6, 22, 16, .96);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-link,
.mobile-cta {
  width: 100%;
  margin-top: 8px;
}

.mobile-link {
  display: block;
  padding: 12px;
  border-radius: 6px;
  color: rgba(247, 243, 233, .82);
}

.mobile-link.is-active,
.mobile-link:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--gold-2);
}

.hero,
.page-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero--home {
  min-height: 86svh;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 22, 16, .95) 0%, rgba(6, 22, 16, .72) 38%, rgba(6, 22, 16, .28) 72%),
    linear-gradient(0deg, #061610 0%, transparent 42%);
}

.hero__content,
.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 190px 0 72px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 34px;
}

.hero__copy {
  max-width: 900px;
}

.hero-lead,
.page-hero__content p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(247, 243, 233, .86);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel,
.statement-panel,
.allocation-panel,
.dashboard-panel,
.report-panel,
.contact-panel,
.map-card {
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(7, 22, 17, .76);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 22px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}

.compass-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 12px;
}

.compass-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 243, 233, .86);
}

.compass-list span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 5px rgba(80, 214, 147, .12);
}

.asset-pulse {
  height: 112px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.asset-pulse i {
  display: block;
  height: var(--h);
  min-height: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--jade), var(--gold));
  animation: barMove 2.4s ease-in-out infinite alternate;
  animation-delay: calc(var(--h) * -.03);
}

@keyframes barMove {
  from { transform: scaleY(.72); filter: brightness(.95); }
  to { transform: scaleY(1); filter: brightness(1.15); }
}

.metric-strip {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--dark-line);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-line);
}

.metric {
  min-height: 140px;
  padding: 28px 20px;
  background:
    linear-gradient(135deg, rgba(80, 214, 147, .1), transparent),
    var(--paper);
}

.metric strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  color: var(--emerald);
}

.metric span:last-child {
  display: block;
  margin-top: 8px;
  color: rgba(6, 22, 16, .68);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
  position: relative;
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--paper + .section--paper {
  border-top: 1px solid var(--dark-line);
}

.section--ink {
  background:
    linear-gradient(140deg, rgba(80, 214, 147, .09), transparent 40%),
    linear-gradient(220deg, rgba(213, 175, 82, .12), transparent 55%),
    var(--ink);
  color: var(--paper);
}

.section--accent {
  background:
    linear-gradient(135deg, rgba(9, 41, 31, .95), rgba(23, 100, 71, .92)),
    var(--pine);
  color: var(--paper);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(6, 22, 16, .7);
  font-size: 1.08rem;
}

.section--ink .section-heading p:not(.eyebrow),
.section--accent .section-heading p:not(.eyebrow) {
  color: rgba(247, 243, 233, .74);
}

.solution-grid,
.principle-grid,
.desk-grid,
.journey-grid,
.pathway-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.solution-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.solution-card,
.principle-grid article,
.desk-grid article,
.journey-grid article,
.pathway-card,
.faq-grid details {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--dark-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .38)),
    #fffaf0;
  color: var(--ink);
  box-shadow: 0 18px 55px rgba(6, 22, 16, .08);
  overflow: hidden;
}

.section--ink .principle-grid article,
.section--ink .desk-grid article,
.section--ink .journey-grid article,
.section--ink .faq-grid details {
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
    rgba(255, 255, 255, .03);
  color: var(--paper);
}

.solution-card::before,
.pathway-card::before,
.desk-grid article::before,
.journey-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--gold), var(--clay));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .3s ease;
}

.solution-card:hover::before,
.pathway-card:hover::before,
.desk-grid article:hover::before,
.journey-grid article:hover::before {
  transform: scaleX(1);
}

.card-icon,
.principle-grid .icon,
.pathway-card > .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(23, 100, 71, .1);
}

.card-icon .icon,
.principle-grid .icon,
.pathway-card > .icon {
  width: 24px;
  height: 24px;
}

.label,
.pathway-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--emerald);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.solution-card h3,
.pathway-card h3,
.principle-grid h3,
.desk-grid h3,
.journey-grid h3 {
  margin-bottom: 12px;
}

.solution-card p,
.pathway-card p,
.principle-grid p,
.desk-grid p,
.journey-grid p,
.faq-grid p {
  color: rgba(6, 22, 16, .68);
}

.section--ink .principle-grid p,
.section--ink .desk-grid p,
.section--ink .journey-grid p,
.section--ink .faq-grid p {
  color: rgba(247, 243, 233, .72);
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--emerald);
  font-weight: 900;
}

.split,
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
}

.split > div > p:not(.eyebrow),
.editorial-grid > div > p:not(.eyebrow) {
  margin-top: 20px;
  color: inherit;
  opacity: .78;
  font-size: 1.07rem;
}

.section--paper .split > div > p:not(.eyebrow),
.section--paper .editorial-grid > div > p:not(.eyebrow) {
  color: rgba(6, 22, 16, .72);
  opacity: 1;
}

.image-frame {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.section--paper .image-frame {
  border-color: var(--dark-line);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}

.image-frame:hover img {
  transform: scale(1.06);
}

.process-list,
.timeline,
.feature-list,
.check-list {
  margin-top: 28px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.section--paper .process-list article {
  border-color: var(--dark-line);
  background: rgba(6, 22, 16, .04);
}

.process-list span,
.journey-grid span {
  color: var(--gold-2);
  font-weight: 900;
}

.section--paper .process-list span,
.section--paper .journey-grid span {
  color: var(--emerald);
}

.process-list h3 {
  margin-bottom: 5px;
}

.process-list p,
.timeline p,
.feature-list p,
.check-list li {
  color: rgba(247, 243, 233, .74);
}

.section--paper .process-list p,
.section--paper .timeline p,
.section--paper .feature-list p,
.section--paper .check-list li {
  color: rgba(6, 22, 16, .7);
}

.pathway-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pathway-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-stack {
  display: grid;
  gap: 14px;
}

.insight-stack article {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}

.section--paper .insight-stack article {
  border-color: var(--dark-line);
  background: rgba(6, 22, 16, .04);
}

.insight-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
}

.section--paper .insight-stack strong {
  color: var(--emerald);
}

.insight-stack p {
  color: rgba(247, 243, 233, .72);
}

.section--paper .insight-stack p {
  color: rgba(6, 22, 16, .68);
}

.statement-panel,
.allocation-panel,
.dashboard-panel,
.report-panel,
.contact-panel {
  padding: 28px;
}

.statement-panel > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  margin-bottom: 24px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--jade));
}

.statement-panel h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  margin-bottom: 14px;
}

.statement-panel p {
  color: rgba(247, 243, 233, .76);
}

.section--paper .statement-panel {
  background: var(--ink);
  color: var(--paper);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--dark-line);
}

.timeline span {
  color: var(--emerald);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .12em;
}

.principle-grid {
  grid-template-columns: repeat(3, 1fr);
}

.desk-grid {
  grid-template-columns: repeat(4, 1fr);
}

.journey-grid {
  grid-template-columns: repeat(4, 1fr);
}

.journey-grid article {
  min-height: 260px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list p {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.check-list {
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 5px rgba(80, 214, 147, .13);
}

.allocation-panel h3,
.dashboard-panel h3,
.report-panel h3 {
  margin-bottom: 20px;
}

.allocation-row {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.allocation-row span {
  color: rgba(247, 243, 233, .76);
  font-weight: 700;
}

.allocation-row i {
  display: block;
  height: 12px;
  width: var(--w);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  box-shadow: 0 0 28px rgba(80, 214, 147, .24);
}

.allocation-panel p,
.dashboard-panel p {
  margin-top: 18px;
  color: rgba(247, 243, 233, .62);
  font-size: .92rem;
}

.dial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dial-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.dial-grid span {
  display: block;
  color: rgba(247, 243, 233, .62);
  font-size: .82rem;
}

.dial-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--gold-2);
  font-size: 1.2rem;
}

.report-panel ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.report-panel li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  color: rgba(247, 243, 233, .75);
}

.report-panel li span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold-2);
  font-weight: 900;
}

.cta-band {
  padding: 48px 0;
  background: var(--gold-2);
  color: var(--ink);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.cta-band h2 {
  max-width: 780px;
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(6, 22, 16, .72);
}

.cta-band .eyebrow {
  color: var(--emerald);
}

.page-hero {
  min-height: 64svh;
}

.page-hero--split .hero__image {
  object-position: center top;
}

.page-hero--contact {
  min-height: 58svh;
  background:
    linear-gradient(115deg, rgba(6, 22, 16, .96), rgba(13, 60, 43, .82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 84px);
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  background: var(--ink);
  color: var(--paper);
}

.contact-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.contact-panel a,
.contact-panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: rgba(247, 243, 233, .82);
}

.contact-panel .button {
  margin-top: 24px;
  color: var(--ink);
  justify-content: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  background: #fffaf0;
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(6, 22, 16, .08);
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: rgba(6, 22, 16, .74);
  font-weight: 800;
  font-size: .9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 22, 16, .18);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(247, 243, 233, .82);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--emerald);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(80, 214, 147, .18);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  color: var(--emerald);
  font-weight: 800;
}

.map-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(80, 214, 147, .12), rgba(213, 175, 82, .1)),
    var(--ink);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotate(-8deg) scale(1.2);
}

.map-route {
  position: absolute;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--jade), transparent);
  border-radius: 8px;
  filter: drop-shadow(0 0 18px rgba(80, 214, 147, .45));
}

.map-route.one {
  left: -8%;
  top: 38%;
  width: 115%;
  transform: rotate(-14deg);
}

.map-route.two {
  left: 20%;
  top: 58%;
  width: 90%;
  transform: rotate(22deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--gold-2);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .35);
}

.map-card a {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .18);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

.faq-grid details p {
  margin-top: 12px;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--paper);
  background: #040d0a;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(247, 243, 233, .64);
  max-width: 430px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 800;
}

.site-footer h2 {
  font-size: .9rem;
  color: var(--gold-2);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 10px 0;
  color: rgba(247, 243, 233, .66);
}

.site-footer a:hover {
  color: var(--gold-2);
}

.legal-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.legal-line p {
  max-width: 880px;
  color: rgba(247, 243, 233, .54);
  font-size: .86rem;
}

.legal-line a {
  min-width: max-content;
  color: var(--gold-2);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tilt-card:hover {
  box-shadow: 0 25px 75px rgba(6, 22, 16, .16);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .solution-grid,
  .solution-grid--four,
  .principle-grid,
  .desk-grid,
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand strong {
    font-size: .92rem;
  }

  .brand em {
    font-size: .82rem;
  }

  .hero,
  .hero--home,
  .page-hero {
    min-height: auto;
  }

  .hero__content,
  .page-hero__content {
    padding: 130px 0 54px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .metric-grid,
  .pathway-grid,
  .split,
  .split--reverse,
  .editorial-grid,
  .contact-grid,
  .cta-band__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 0;
  }

  .metric {
    min-height: 112px;
  }

  .solution-grid,
  .solution-grid--four,
  .principle-grid,
  .desk-grid,
  .journey-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-line {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand span {
    max-width: 190px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .process-list article,
  .report-panel li {
    grid-template-columns: 1fr;
  }

  .dial-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
