:root {
  --black: #0d0e10;
  --graphite: #151619;
  --ink: #161719;
  --gold: #c8a34a;
  --gold-light: #e3c46e;
  --stone: #f2f0eb;
  --white: #ffffff;
  --muted: #6d6d6b;
  --line: rgba(22, 23, 25, 0.13);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1360px, calc(100% - 48px));
  height: 124px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 215px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.brand {
  width: 188px;
  height: 118px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.brand img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  object-position: center;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
}
.desktop-nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.25s;
}
.desktop-nav a:hover {
  color: var(--gold-light);
}
.header-cta {
  border: 1px solid rgba(227, 196, 110, 0.6);
  padding: 13px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: 0.25s ease;
}
.header-cta:hover {
  background: var(--gold);
  color: #101010;
}
.header-cta span {
  margin-left: 10px;
}
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 46%,
      rgba(200, 163, 74, 0.11),
      transparent 26%
    ),
    linear-gradient(128deg, #090a0c 0%, #111216 58%, #08090b 100%);
  color: #fff;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}
.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: 8%;
  top: 20%;
  border: 1px solid rgba(200, 163, 74, 0.19);
  border-radius: 50%;
  box-shadow:
    0 0 120px rgba(200, 163, 74, 0.08),
    inset 0 0 100px rgba(200, 163, 74, 0.04);
}
.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.hero-glow::after {
  inset: 25%;
  border-color: rgba(200, 163, 74, 0.15);
}
.hero-layout {
  min-height: 820px;
  padding-top: 145px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 92px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  padding-top: 22px;
}
.eyebrow {
  margin: 0 0 26px;
  color: #8b7134;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--gold-light);
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 5.3vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.052em;
  font-weight: 530;
}
h1 em,
h2 em {
  display: block;
  color: var(--gold-light);
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 350;
  letter-spacing: -0.06em;
}
.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  padding-left: 22px;
  border-left: 1px solid var(--gold);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.25s,
    background 0.25s;
}
.button.gold {
  background: linear-gradient(120deg, #ae8530, #dfbf67);
  color: #0e0f10;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  margin-left: 19px;
  font-size: 16px;
}
.text-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.text-link span {
  color: var(--gold-light);
  margin-left: 12px;
}
.hero-art {
  width: min(100%, 510px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 163, 74, 0.16),
    transparent 66%
  );
  filter: blur(20px);
}
.art-frame {
  width: 82%;
  aspect-ratio: 1;
  position: relative;
  transform: rotate(-7deg);
}
.art-frame::before,
.art-frame::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}
.art-frame::after {
  inset: 27%;
  border-color: rgba(200, 163, 74, 0.26);
}
.art-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 163, 74, 0.2);
}
.orbit-one {
  inset: 0;
}
.orbit-two {
  inset: 17%;
  border-color: rgba(255, 255, 255, 0.1);
}
.art-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(
    90deg,
    rgba(227, 196, 110, 0.85),
    rgba(227, 196, 110, 0)
  );
}
.axis-one {
  width: 46%;
  transform: rotate(28deg);
}
.axis-two {
  width: 46%;
  transform: rotate(208deg);
}
.art-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  background: #101115;
  box-shadow: 0 0 20px rgba(227, 196, 110, 0.45);
}
.node-one {
  top: 13%;
  left: 24%;
}
.node-two {
  top: 24%;
  right: 13%;
}
.node-three {
  bottom: 14%;
  right: 28%;
}
.node-four {
  bottom: 25%;
  left: 11%;
}
.art-core {
  position: absolute;
  width: 116px;
  height: 116px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(227, 196, 110, 0.55);
  background: rgba(13, 14, 16, 0.78);
  box-shadow: 0 0 55px rgba(200, 163, 74, 0.14);
  display: grid;
  place-content: center;
  gap: 9px;
}
.art-core i {
  display: block;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f0d98f);
}
.art-core i:first-child {
  transform: translateX(-10px);
}
.art-core i:last-child {
  transform: translateX(10px);
}

.section-stone {
  background: var(--stone);
}
.section-white {
  background: var(--white);
}
.section-dark {
  background: var(--graphite);
  color: #fff;
}
.intro {
  position: relative;
  overflow: hidden;
  padding: 138px 0 150px;
}
.intro::before {
  content: "";
  position: absolute;
  width: min(760px, 64vw);
  aspect-ratio: 1;
  right: -170px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../assets/nexa-pattern.webp") center / contain no-repeat;
  opacity: 0.11;
  filter: grayscale(1);
  pointer-events: none;
}
.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.65fr;
  gap: 90px;
}
.section-index {
  display: block;
  margin-top: 90px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #8b8a86;
}
.intro-statement h2,
.section-heading h2,
.integration-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 520;
}
.intro-statement h2 em {
  margin-top: 4px;
  color: #98762e;
}
.intro-columns {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.intro-columns p,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.visual-story {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  background: #0e0f11;
  color: #fff;
  overflow: hidden;
}
.visual-story-image {
  min-height: 650px;
  position: relative;
  overflow: hidden;
}
.visual-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, #0e0f11),
    linear-gradient(0deg, rgba(10, 11, 13, 0.2), transparent 50%);
}
.visual-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 1.2s ease;
}
.visual-story:hover .visual-story-image img {
  transform: scale(1.025);
}
.visual-story-copy {
  align-self: center;
  padding: 70px 8vw 70px 3vw;
  position: relative;
  z-index: 1;
}
.visual-story-copy > span,
.connection-banner-copy > span {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.19em;
}
.visual-story-copy h2 {
  margin: 28px 0 25px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 520;
}
.visual-story-copy h2 em {
  color: var(--gold-light);
}
.visual-story-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.services {
  padding: 140px 0 150px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 72px;
}
.section-heading.services-heading {
  display: block;
}
.section-heading h2 em {
  color: #98762e;
}
.section-heading > p {
  padding-bottom: 6px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.service-card {
  min-height: 292px;
  padding: 30px 31px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.service-top {
  display: flex;
  justify-content: space-between;
  color: #9a7a34;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.service-icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.55;
  color: #a88539;
  transition:
    color 0.3s,
    transform 0.3s;
}
.service-card h3 {
  margin: auto 0 17px;
  max-width: 240px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 530;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  transition: color 0.3s;
}
.service-card:hover {
  background: #17181a;
  color: #fff;
  transform: translateY(-4px);
}
.service-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}
.service-card:hover .service-icon {
  color: var(--gold-light);
  transform: translateY(-3px);
}

.integration {
  position: relative;
  overflow: hidden;
  padding: 145px 0 138px;
}
.integration-line {
  position: absolute;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(200, 163, 74, 0.12);
  border-radius: 50%;
  right: -150px;
  top: -200px;
}
.integration-line::after {
  content: "";
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}
.integration-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 105px;
  position: relative;
}
.integration-heading.single {
  display: block;
}
.integration-heading.single h2 {
  max-width: 940px;
}
.integration-heading .eyebrow {
  grid-column: 1 / -1;
}
.integration-heading h2 {
  color: #fff;
}
.integration-heading h2 em {
  color: var(--gold-light);
}
.integration-heading > p {
  align-self: end;
  margin: 0 0 5px;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.75;
}
.pillar-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.pillar {
  min-height: 240px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pillar span {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.18em;
}
.pillar-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-top: 45px;
  color: var(--gold-light);
  stroke-width: 1.3;
}
.pillar h3 {
  margin: 22px 0 14px;
  font-size: 20px;
  font-weight: 500;
}
.pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.65;
}

.method {
  padding: 140px 0 145px;
}
.method-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 110px;
  align-items: end;
}
.method-heading.single {
  display: block;
}
.method-heading h2,
.identity-card h2,
.principles-heading h2,
.contact-gold h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  font-weight: 520;
}
.method-heading h2 em,
.principles-heading h2 em {
  color: #98762e;
}
.method-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.step-grid {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.step {
  position: relative;
  padding-right: 32px;
}
.step > span {
  color: #94742e;
  font-size: 14px;
  letter-spacing: 0.16em;
}
.step-marker {
  height: 34px;
  margin: 28px 0 29px;
  border-top: 2px solid rgba(22, 23, 25, 0.28);
  position: relative;
}
.step-marker i {
  position: absolute;
  top: -8px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--stone);
}
.step h3 {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 520;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.connection-banner {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0c0d0f;
  color: #fff;
}
.connection-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: media-drift 16s ease-in-out infinite alternate;
}
.connection-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 9, 11, 0.94) 0%,
    rgba(8, 9, 11, 0.65) 45%,
    rgba(8, 9, 11, 0.12) 100%
  );
}
.connection-banner-copy {
  position: relative;
  z-index: 1;
}
.connection-banner-copy h2 {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 510;
}
@keyframes media-drift {
  from {
    transform: scale(1.01) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-1%);
  }
}

.team-section {
  padding: 140px 0 150px;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -250px;
  top: -180px;
  border: 1px solid rgba(200, 163, 74, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.team-heading,
.clients-heading {
  position: relative;
  margin-bottom: 70px;
}
.team-heading h2,
.clients-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  font-weight: 520;
}
.team-heading h2 em,
.clients-heading h2 em {
  color: #98762e;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
}
.team-card {
  min-width: 0;
  background: #f8f7f4;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(16, 17, 19, 0.14);
  z-index: 2;
}
.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd9d0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.035);
}
.team-card-copy {
  padding: 26px 22px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.team-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.team-card p {
  margin: 13px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.team-more {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(22, 23, 25, 0.22);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.team-more span {
  color: #98762e;
  font-size: 18px;
}
.team-more:hover {
  background: #151619;
  border-color: #151619;
  color: #fff;
}
.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 30px;
}
.profile-modal:target {
  display: grid;
  animation: modal-in 0.25s ease both;
}
.profile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.84);
  backdrop-filter: blur(12px);
}
.profile-dialog {
  width: min(760px, 100%);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  position: relative;
  z-index: 1;
  padding: 62px 64px 58px;
  border: 1px solid rgba(227, 196, 110, 0.42);
  background:
    linear-gradient(135deg, rgba(200, 163, 74, 0.08), transparent 34%), #121315;
  color: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}
.profile-dialog::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 0;
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.profile-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gold-light);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.profile-kicker {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.19em;
}
.profile-dialog h3 {
  margin: 24px 0 12px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 540;
}
.profile-dialog strong {
  display: block;
  max-width: 610px;
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}
.profile-bio {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.profile-bio p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.78;
}
.profile-bio p:last-child {
  margin-bottom: 0;
}
@keyframes modal-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.clients-section {
  padding: 135px 0 145px;
  position: relative;
  overflow: hidden;
}
.clients-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -240px;
  bottom: -310px;
  border: 1px solid rgba(227, 196, 110, 0.12);
  transform: rotate(45deg);
}
.clients-heading h2 {
  color: #fff;
}
.clients-heading h2 em {
  color: var(--gold-light);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}
.client-logo {
  min-height: 190px;
  padding: 28px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}
.client-logo:hover {
  transform: translateY(-5px);
  background: #fff;
}
.client-logo img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: contain;
}

.ink-link {
  display: inline-flex;
  padding: 0 0 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ink-link span {
  margin-left: 23px;
  color: #99762e;
}

.identity-section {
  position: relative;
  min-height: 910px;
  overflow: hidden;
  background: #f9f9f7;
}
.identity-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../assets/nexa-pattern.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.52;
}
.identity-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.7) 70%
  );
}
.identity-layout {
  min-height: 910px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 90px;
  position: relative;
  z-index: 1;
}
.identity-card {
  background: #111214;
  color: #fff;
  padding: 76px 70px;
  box-shadow: 0 40px 90px rgba(16, 17, 19, 0.23);
}
.identity-card h2 {
  font-size: clamp(40px, 3.7vw, 58px);
}
.identity-card h2 em {
  margin-top: 5px;
  color: var(--gold-light);
}
.identity-card > p:not(.eyebrow) {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}
.button.outline {
  margin-top: 40px;
  border: 1px solid rgba(227, 196, 110, 0.55);
  color: #fff;
}
.button.outline:hover {
  background: var(--gold);
  color: #111;
}
.identity-signature {
  padding-right: 40px;
}
.identity-signature > span {
  display: block;
  margin-bottom: 30px;
  color: #98752c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.identity-signature blockquote {
  margin: 0;
  color: #2c2d2f;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(27px, 2.8vw, 42px);
  line-height: 1.35;
  font-weight: 350;
  letter-spacing: -0.04em;
}

.principles {
  padding: 140px 0 150px;
}
.principles-heading {
  margin-bottom: 72px;
}
.principles-heading h2 em {
  display: inline;
}
.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  align-items: stretch;
}
.principle {
  min-height: 415px;
  padding: 38px 35px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22, 23, 25, 0.13);
  border-right: 0;
  background: rgba(255, 255, 255, 0.25);
}
.principle:last-child {
  border-right: 1px solid rgba(22, 23, 25, 0.13);
}
.principle.featured {
  background: #191a1d;
  color: #fff;
  border-color: #191a1d;
}
.principle > span {
  color: #9a7832;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.principle h3 {
  margin: auto 0 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 29px;
  line-height: 1.28;
  font-weight: 450;
  letter-spacing: -0.035em;
}
.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.principle.featured p {
  color: rgba(255, 255, 255, 0.54);
}
.values-card ul {
  list-style: none;
  margin: 45px 0 0;
  padding: 0;
}
.values-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(22, 23, 25, 0.12);
  color: #484846;
  font-size: 12px;
}
.values-card li::before {
  content: "·";
  color: var(--gold);
  margin-right: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f1012;
}
.contact-gold {
  padding: 110px max(55px, calc((100vw - 1220px) / 2));
  padding-right: 7vw;
  background: linear-gradient(135deg, #b88b35, #e1c26c);
  color: #111214;
}
.contact-gold .eyebrow {
  color: rgba(17, 18, 20, 0.63);
}
.contact-gold h2 {
  max-width: 600px;
  font-size: clamp(43px, 4.3vw, 66px);
}
.contact-gold h2 em {
  margin-top: 5px;
  color: #111214;
}
.contact-gold > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(17, 18, 20, 0.68);
}
.contact-details {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 18, 20, 0.25);
  display: grid;
  gap: 12px;
}
.contact-details a,
.contact-details span {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.contact-form-wrap {
  padding: 100px max(55px, calc((100vw - 1220px) / 2));
  padding-left: 7vw;
  color: #fff;
}
.lead-form {
  width: min(100%, 560px);
}
.form-heading {
  margin-bottom: 42px;
}
.form-heading > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.form-heading h3 {
  margin: 15px 0 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.lead-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 23px;
}
.lead-form label > span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 0 13px;
  outline: none;
  background: transparent;
  color: #fff;
  resize: vertical;
  transition: border 0.2s;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.27);
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--gold-light);
}
.lead-form button {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  border: 0;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}
.lead-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.lead-form button span {
  margin-left: 18px;
}
.lead-form > small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

footer {
  background: #090a0c;
  color: #fff;
  padding: 70px 0 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.55fr auto;
  gap: 70px;
  align-items: start;
  padding-bottom: 55px;
}
.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.footer-brand p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.footer-nav {
  display: grid;
  gap: 12px;
}
.footer-nav span {
  margin-bottom: 8px;
  color: #a88a47;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--gold-light);
}
.back-top {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--gold-light);
}
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.70);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.italic-credit {
  margin-left: auto;
}
.italic-credit a {
  color: var(--gold-light);
  font-weight: 700;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 58px;
  z-index: 30;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 18px;
  background: #f2f0eb;
  color: #111;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.23);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.whatsapp-float b {
  color: #98752c;
  font-size: 15px;
}

.reveal {
  animation: reveal linear both;
  animation-timeline: view();
  animation-range: entry 8% cover 25%;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 175px 1fr auto;
  }
  .brand {
    width: 158px;
    height: 104px;
  }
  .brand img {
    width: 84px;
    height: 84px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    justify-self: end;
    margin-right: 24px;
  }
  .mobile-menu {
    display: block;
    justify-self: end;
  }
  .mobile-menu summary {
    list-style: none;
    width: 32px;
    height: 24px;
    display: grid;
    align-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    height: 1px;
    background: #fff;
  }
  .mobile-menu div {
    position: absolute;
    top: 98px;
    left: 0;
    right: 0;
    padding: 25px;
    background: #111214;
    display: grid;
    gap: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu div a {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .hero {
    min-height: auto;
  }
  .hero-layout {
    min-height: 930px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 175px;
    padding-bottom: 60px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-art {
    width: 390px;
    margin-top: -15px;
  }
  .hero-glow {
    right: -160px;
    top: 45%;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .visual-story {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .section-index {
    margin-top: 35px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .integration-heading {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .method-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 0;
  }
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .identity-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 90px 0;
  }
  .identity-section,
  .identity-layout {
    min-height: auto;
  }
  .identity-signature {
    padding: 60px 30px 10px;
  }
  .principle-grid {
    grid-template-columns: 1fr 1fr;
  }
  .principle.values-card {
    grid-column: 1 / -1;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-gold,
  .contact-form-wrap {
    padding: 90px max(40px, calc((100vw - 850px) / 2));
  }
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .back-top {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1220px);
  }
  .site-header {
    width: calc(100% - 32px);
    height: 100px;
    grid-template-columns: 135px 1fr;
  }
  .brand {
    width: 128px;
    height: 88px;
  }
  .brand img {
    width: 72px;
    height: 72px;
  }
  .header-cta {
    display: none;
  }
  .mobile-menu div {
    top: 100px;
  }
  .hero-layout {
    min-height: 850px;
    padding-top: 145px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .hero-art {
    width: min(100%, 310px);
    margin-top: 20px;
  }
  .art-core {
    width: 88px;
    height: 88px;
  }
  .art-core i {
    width: 32px;
  }
  .intro,
  .services,
  .integration,
  .method,
  .principles,
  .team-section,
  .clients-section {
    padding: 90px 0;
  }
  .intro-statement h2,
  .section-heading h2,
  .integration-heading h2 {
    font-size: 39px;
  }
  .intro-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .visual-story {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .visual-story-image {
    min-height: 380px;
  }
  .visual-story-image::after {
    background: linear-gradient(0deg, #0e0f11, transparent 60%);
  }
  .visual-story-copy {
    padding: 25px 24px 70px;
  }
  .connection-banner {
    min-height: 540px;
  }
  .team-heading,
  .clients-heading {
    margin-bottom: 45px;
  }
  .team-heading h2,
  .clients-heading h2 {
    font-size: 38px;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-card-copy {
    padding: 18px 14px 16px;
  }
  .team-card h3 {
    font-size: 19px;
  }
  .team-card p {
    font-size: 14px;
    line-height: 1.45;
  }
  .team-more {
    min-height: 44px;
    padding: 0 11px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .profile-modal {
    padding: 14px;
  }
  .profile-dialog {
    max-height: calc(100vh - 28px);
    padding: 52px 25px 35px;
  }
  .profile-dialog::before {
    left: 25px;
  }
  .profile-dialog h3 {
    font-size: 37px;
  }
  .profile-bio p {
    font-size: 14px;
    line-height: 1.7;
  }
  .clients-grid {
    gap: 8px;
  }
  .client-logo {
    min-height: 140px;
    padding: 16px;
  }
  .client-logo img {
    height: 102px;
  }
  .service-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    min-height: 290px;
    padding: 22px 18px 25px;
  }
  .service-icon {
    width: 34px;
    height: 34px;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .service-card p {
    line-height: 1.55;
  }
  .step-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .identity-layout {
    width: 100%;
    padding: 55px 0 65px;
  }
  .identity-card {
    padding: 60px 28px;
  }
  .identity-signature {
    padding: 60px 28px 0;
  }
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .principle.values-card {
    grid-column: auto;
  }
  .principle {
    min-height: 330px;
    border-right: 1px solid rgba(22, 23, 25, 0.13);
    border-bottom: 0;
  }
  .principle:last-child {
    border-bottom: 1px solid rgba(22, 23, 25, 0.13);
  }
  .contact-gold,
  .contact-form-wrap {
    padding: 75px 24px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .italic-credit {
    margin-left: 0;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    width: 50px;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
