:root {
  --ink: #071a2c;
  --ink-soft: #10293e;
  --paper: #f4f1ea;
  --paper-deep: #e9e3d8;
  --white: #fffdf8;
  --copper: #c87443;
  --copper-bright: #ef9c64;
  --blue: #224b6d;
  --line: rgba(7, 26, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--copper);
  color: var(--white);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 80px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  position: relative;
  display: block;
  width: 178px;
  height: 68px;
  overflow: hidden;
}

.brand-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  filter: invert(1);
  transform: translate(-50%, -50%) scale(1.62);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-geist-mono);
  font-size: 10px;
}

.language-switch button,
.mobile-language {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.08em;
}

.language-switch button {
  padding: 7px 2px;
}

.language-switch button.active,
.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--copper-bright);
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper-bright);
  content: "";
  transition: width 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--white);
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--copper-bright);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta {
  display: none;
  border-bottom: 1px solid var(--copper-bright);
  padding: 7px 0;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 18px;
}

.mobile-language {
  padding: 7px 0;
  color: var(--copper-bright);
  font-family: var(--font-geist-mono);
  font-size: 11px;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

a:hover .arrow-icon,
a:focus-visible .arrow-icon {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(7, 26, 44, 0.98) 0%, rgba(7, 26, 44, 0.96) 52%, rgba(16, 41, 62, 0.94) 100%),
    var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 85%);
}

.hero::after {
  position: absolute;
  top: -20%;
  right: -14%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(239, 156, 100, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 7vw;
  padding: 138px clamp(24px, 7vw, 112px) 84px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--copper-bright);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(48px, 5.3vw, 80px);
  font-weight: 430;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero h1 em {
  color: var(--copper-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-intro {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 350;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 999px;
  padding: 0 23px;
  font-size: 13px;
  font-weight: 580;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d7804e;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.84);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.hero-signals span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper-bright);
  content: "";
}

.decision-visual {
  position: relative;
  width: min(37vw, 560px);
  aspect-ratio: 1;
  justify-self: center;
}

.visual-glow {
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: rgba(200, 116, 67, 0.16);
  filter: blur(45px);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-outer {
  width: 92%;
  height: 92%;
  border-color: rgba(239, 156, 100, 0.25);
  animation: rotate 42s linear infinite;
}

.orbit-middle {
  width: 68%;
  height: 68%;
  border-style: dashed;
  animation: rotate-reverse 32s linear infinite;
}

.orbit-inner {
  width: 47%;
  height: 47%;
  border-color: rgba(239, 156, 100, 0.33);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--copper-bright);
  box-shadow: 0 0 16px rgba(239, 156, 100, 0.72);
  content: "";
}

.orbit::before {
  top: 12%;
  right: 16%;
}

.orbit::after {
  bottom: 13%;
  left: 15%;
}

.orbit-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.47);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.label-vision {
  top: 4%;
  left: 20%;
}

.label-impact {
  right: -3%;
  bottom: 27%;
}

.label-trust {
  top: 25%;
  right: -9%;
}

.decision-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 33%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(7, 26, 44, 0.92);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.02),
    0 24px 80px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.decision-core > span {
  color: var(--copper-bright);
  font-size: 8px;
  letter-spacing: 0.28em;
}

.decision-core strong {
  margin: 8px 0;
  font-size: clamp(12px, 1.1vw, 17px);
  font-weight: 650;
  letter-spacing: 0.15em;
}

.decision-core small {
  color: rgba(255, 255, 255, 0.43);
  font-size: clamp(6px, 0.55vw, 9px);
}

.data-node {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.node-one {
  top: 20%;
  left: 24%;
}

.node-two {
  top: 67%;
  right: 13%;
}

.node-three {
  bottom: 21%;
  left: 28%;
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 2%;
  display: flex;
  width: 210px;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.5;
}

.visual-caption span {
  color: var(--copper-bright);
  font-family: var(--font-geist-mono);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: clamp(24px, 7vw, 112px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.scroll-cue span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.services {
  padding: 120px clamp(24px, 7vw, 112px) 132px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 80px;
  align-items: end;
  margin: 0 auto 64px;
}

.section-kicker {
  margin-bottom: 19px;
  color: var(--copper);
}

.section-heading h2,
.approach h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-heading > p {
  margin: 0 0 4px;
  color: rgba(7, 26, 44, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 430px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 18px 70px rgba(7, 26, 44, 0.08);
  transform: translateY(-8px);
}

.service-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--copper);
  font-family: var(--font-geist-mono);
  font-size: 10px;
}

.card-line {
  flex: 1;
  height: 1px;
  background: rgba(200, 116, 67, 0.35);
}

.service-card h3 {
  min-height: 65px;
  margin: 39px 0 14px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.service-promise {
  margin: 0 0 20px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.service-description {
  margin: 0;
  color: rgba(7, 26, 44, 0.64);
  font-size: 13px;
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 14px;
  color: rgba(7, 26, 44, 0.73);
  font-size: 11px;
  line-height: 1.4;
}

.service-card li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.approach {
  position: relative;
  overflow: hidden;
  padding: 120px clamp(24px, 7vw, 112px) 34px;
  background: var(--ink);
  color: var(--white);
}

.approach::before {
  position: absolute;
  top: 0;
  right: 7vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.approach-intro,
.approach-steps,
.contact-panel,
footer {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.section-kicker.light {
  color: var(--copper-bright);
}

.approach-intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  column-gap: 10vw;
}

.approach-intro .section-kicker,
.approach-intro h2 {
  grid-column: 1;
}

.approach-intro > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 16px;
  line-height: 1.8;
}

.sector-note {
  grid-column: 1 / -1;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.sector-note span {
  margin-right: 24px;
  color: var(--copper-bright);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-steps article {
  display: grid;
  min-height: 230px;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 32px 28px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-steps article:not(:first-child) {
  padding-left: 28px;
}

.approach-steps article:last-child {
  border-right: 0;
}

.step-number {
  color: var(--copper-bright);
  font-family: var(--font-geist-mono);
  font-size: 10px;
}

.approach-steps h3 {
  margin: 0 0 18px;
  font-size: 25px;
  font-weight: 500;
}

.approach-steps p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
  line-height: 1.75;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-top: 55px;
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(120deg, rgba(200, 116, 67, 0.14), transparent 52%),
    rgba(255, 255, 255, 0.035);
}

.contact-panel h2 {
  max-width: 640px;
  font-size: clamp(35px, 4vw, 58px);
}

.contact-action > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.contact-email-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 18px;
  border-radius: 999px;
  padding: 0 21px;
  background: var(--copper);
  color: var(--white);
  font-size: 12px;
  font-weight: 620;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-email-button:hover,
.contact-email-button:focus-visible {
  background: #d7804e;
  transform: translateY(-2px);
}

.contact-location {
  margin: 20px 0 0 !important;
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 10px !important;
  letter-spacing: 0.06em;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.06em;
}

footer > p:last-child {
  text-align: right;
}

.footer-center {
  text-align: center;
}

.footer-center p {
  margin: 0;
}

.footer-center p + p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 8px;
}

.brand-logo-footer {
  width: 126px;
  height: 58px;
  opacity: 0.72;
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orbit {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 24px;
  }

  .decision-visual {
    width: 360px;
  }

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

  .service-card {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .service-card:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .contact-panel {
    gap: 48px;
    padding: 46px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 22px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
  }

  .mobile-cta {
    display: block;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .decision-visual {
    width: min(100%, 430px);
    align-self: center;
  }

  .hero-signals {
    margin-top: 42px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .approach-intro,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .approach-intro .section-kicker,
  .approach-intro h2,
  .approach-intro > p,
  .sector-note {
    grid-column: 1;
    grid-row: auto;
  }

  .sector-note {
    line-height: 1.8;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-steps article,
  .approach-steps article:not(:first-child) {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > p:last-child {
    text-align: left;
  }

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

@media (max-width: 560px) {
  .brand-logo {
    width: 142px;
    height: 60px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-signals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-signals span::after {
    display: none;
  }

  .visual-caption {
    right: 8%;
    bottom: -3%;
  }

  .services,
  .approach {
    padding-top: 90px;
  }

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

  .service-card,
  .service-card:first-child,
  .service-card:nth-child(odd),
  .service-card:nth-child(even) {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

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

  .contact-panel {
    padding: 30px 24px;
  }
}
