:root {
  --burgundy: #55151c;
  --burgundy-deep: #3a0d12;
  --burgundy-soft: rgba(85, 21, 28, 0.08);
  --gold: #c89a42;
  --gold-bright: #d4af5a;
  --gold-soft: rgba(200, 154, 66, 0.16);
  --beige: #f3e9dc;
  --ivory: #faf7f1;
  --ink: #211817;
  --muted: rgba(33, 24, 23, 0.62);
  --line: rgba(33, 24, 23, 0.12);
  --white: #fffdf9;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --pad: clamp(20px, 4vw, 56px);
  --max: 1280px;
  --header: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

::selection {
  background: var(--burgundy);
  color: var(--ivory);
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--gold);
  color: var(--ink);
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9.2vw, 132px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.display span {
  display: block;
}

h1,
h2,
h3 {
  text-transform: uppercase;
}

.lead {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 300;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.section-dark {
  background: var(--ink);
  color: var(--ivory);
}

.section-dark .lead,
.section-burgundy .lead {
  color: rgba(250, 247, 241, 0.72);
}

.section-burgundy {
  background: var(--burgundy);
  color: var(--ivory);
}

.section-beige {
  background: var(--beige);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: rise 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.28s var(--ease);
  gap: 10px;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-line {
  border-color: currentColor;
  background: transparent;
}

.btn-line:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.section-dark .btn-line:hover,
.section-burgundy .btn-line:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.btn-ghost {
  padding: 0;
  min-height: 44px;
  letter-spacing: 0.16em;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.link-arrow::after {
  content: "→";
  font-size: 1.05em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 241, 0.46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: 0.35s var(--ease);
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(250, 247, 241, 0.92);
  border-bottom-color: var(--line);
}

.site-header.is-over-dark {
  background: rgba(33, 24, 23, 0.28);
  color: var(--ivory);
}

.site-header.is-over-dark.is-scrolled {
  background: rgba(33, 24, 23, 0.88);
  border-bottom-color: rgba(250, 247, 241, 0.08);
}

.header-inner {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.brand span {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.22em;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav-desktop a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  opacity: 1;
  color: var(--gold);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 78px;
  height: 34px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 2px;
  position: relative;
}

.site-header.is-over-dark .lang {
  border-color: rgba(250, 247, 241, 0.18);
}

.lang button {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.lang button.is-active {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: 0.25s var(--ease);
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(40deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-40deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px var(--pad) 48px;
  background: var(--burgundy);
  color: var(--ivory);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s var(--ease);
}

body.nav-open .nav-mobile {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 56px);
  line-height: 1.15;
}

.hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  padding: 48px 0 72px;
  position: relative;
  color: var(--ivory);
  background: var(--ink);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 24, 23, 0.78) 0%, rgba(85, 21, 28, 0.28) 52%, rgba(33, 24, 23, 0.18) 100%),
    linear-gradient(180deg, rgba(33, 24, 23, 0.2), rgba(33, 24, 23, 0.55));
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero .lead {
  margin-top: 28px;
  color: rgba(250, 247, 241, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--beige);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 42s linear infinite;
}

.marquee p {
  margin: 0;
  padding-right: 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-copy .lead {
  max-width: 34em;
  margin-top: 18px;
}

.about-copy .lead + .lead {
  margin-top: 14px;
}

.about-title {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.about-visual {
  position: relative;
  margin: 0;
  min-height: 420px;
  background: var(--ink);
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200, 154, 66, 0.55);
  pointer-events: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(var(--metrics-count, 4), 1fr);
  border-top: 1px solid var(--line);
}

.metric {
  padding: 48px 28px 42px 0;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.metric.placeholder b {
  color: var(--gold);
}

.metric span {
  display: block;
  margin-top: 16px;
  max-width: 160px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.solution-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: 0.35s var(--ease);
}

.solution-row:last-child {
  border-bottom: 1px solid var(--line);
}

.solution-row .num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.solution-row h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
}

.solution-row p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}

.solution-row .mark {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  opacity: 0;
  transform: scale(0.86);
  transition: 0.35s var(--ease);
  background:
    radial-gradient(circle at 30% 30%, var(--gold-soft), transparent 55%),
    var(--burgundy);
}

.solution-row:hover,
.solution-row.is-on {
  background: var(--burgundy);
  color: var(--ivory);
  padding-left: 20px;
  padding-right: 20px;
}

.solution-row:hover p,
.solution-row.is-on p {
  color: rgba(250, 247, 241, 0.72);
}

.solution-row:hover .mark,
.solution-row.is-on .mark {
  opacity: 1;
  transform: none;
}

.presence-section .display {
  font-size: clamp(44px, 7vw, 96px);
}

.presence-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 28px 40px;
  align-items: start;
  margin-top: 36px;
}

.presence-layout .region-list {
  margin-top: 0;
  align-content: start;
}

.presence-layout .map-box {
  margin-top: 0;
}

.map-box {
  position: relative;
  margin-top: 36px;
  background: #efe6d8;
  line-height: 0;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(85, 21, 28, 0.12);
}

.map-box svg,
.map-box .world-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.world-svg .ocean,
.world-svg .lake {
  fill: #d7cfc2;
}

.world-svg .lake {
  stroke: rgba(85, 21, 28, 0.08);
  stroke-width: 0.25;
}

.world-svg .graticule path {
  fill: none;
  stroke: rgba(85, 21, 28, 0.08);
  stroke-width: 0.4;
}

.world-svg .land {
  fill: #f7f1e8;
  stroke: #8d7d70;
  stroke-width: 0.35;
  transition: fill 0.28s var(--ease), stroke 0.28s var(--ease), opacity 0.35s var(--ease);
}

.world-svg .land.is-live {
  fill: #55151c;
  stroke: #c89a42;
  stroke-width: 0.75;
  cursor: pointer;
}

.world-svg .land.is-live:hover,
.world-svg .land.is-on {
  fill: #c89a42;
  stroke: #55151c;
}

.world-svg .land.is-dim {
  opacity: 0.35;
}

.world-svg .land.is-live.is-dim {
  opacity: 0.5;
}

.world-svg .sea-label {
  fill: rgba(85, 21, 28, 0.38);
  font-family: Outfit, sans-serif;
  letter-spacing: 0.18em;
  text-anchor: middle;
  pointer-events: none;
}

.world-svg .map-dot.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.map-dot {
  fill: #c89a42;
  stroke: #faf7f1;
  stroke-width: 1.2;
  cursor: pointer;
  transition: opacity 0.4s var(--ease);
}

.map-tooltip {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  pointer-events: none;
  white-space: nowrap;
  border-radius: 2px;
}

#presenceMarkets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 28px;
  margin-top: 20px;
}

.region-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.region-btn,
.filter-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: left;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.region-btn.is-on,
.filter-btn.is-on {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}

.market-mini {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.market-mini strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

.market-mini span {
  color: var(--muted);
  font-size: 13px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 28px;
}

.market-grid,
.story-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 100%;
  transition: 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.card .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.card .status {
  color: var(--gold);
}

.who {
  min-height: 80vh;
  display: grid;
  align-content: center;
}

.process-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
}

.process-nums {
  display: grid;
  align-content: start;
  gap: 8px;
}

.process-nums button {
  font-family: var(--serif);
  font-size: 42px;
  text-align: left;
  opacity: 0.28;
  letter-spacing: 0.06em;
}

.process-nums button.is-on {
  opacity: 1;
  color: var(--gold);
}

.process-copy h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
}

.compliance-line {
  margin: 36px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-grid article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.why-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

.industries-track {
  display: flex;
  gap: 48px;
  overflow-x: auto;
  padding: 28px 0 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.industries-track::-webkit-scrollbar {
  height: 2px;
}

.industries-track::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.industry-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  text-transform: uppercase;
}

.industry-item:hover {
  color: var(--burgundy);
  -webkit-text-stroke: 0;
}

.tech-flow {
  display: grid;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.tech-flow::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

.tech-flow::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  width: 1px;
  height: var(--tech-line, 0%);
  background: var(--gold);
}

.tech-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 92px;
}

.tech-step i {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ivory);
  position: relative;
  z-index: 1;
}

.tech-step b {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  text-transform: uppercase;
}

.team {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.team img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  padding: 18px 0;
  text-transform: uppercase;
}

.faq-item button span:last-child {
  color: var(--gold);
}

.faq-item .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-item .answer > div {
  overflow: hidden;
}

.faq-item.is-open .answer {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
}

.faq-item .answer p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
}

.section-burgundy .display,
.cta-block .display {
  color: var(--gold);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.form .full {
  grid-column: 1 / -1;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form input,
.form select,
.form textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(250, 247, 241, 0.2);
  border-radius: 2px;
  background: rgba(250, 247, 241, 0.04);
  color: var(--ivory);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form button {
  justify-self: start;
}

.form-ok {
  display: none;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 28px;
}

.form.is-sent label,
.form.is-sent button[type="submit"] {
  display: none;
}

.form.is-sent .form-ok {
  display: block;
}

.telegram-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 14px;
}

.page-hero {
  padding: 72px 0 48px;
}

.page-hero .display {
  font-size: clamp(48px, 8vw, 108px);
}

.about-sections {
  display: grid;
  gap: 0;
}

.about-sections article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 28px 48px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.about-sections h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 0.95;
}

.about-sections p {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
}

.market-hero {
  min-height: 56vh;
  display: grid;
  align-items: end;
  color: var(--ivory);
  background: var(--ink) center / cover no-repeat;
  position: relative;
}

.market-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 24, 23, 0.1), rgba(33, 24, 23, 0.72));
}

.market-hero .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.req-grid article {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.req-grid h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.article-wrap {
  width: min(760px, calc(100% - var(--pad) * 2));
  margin: 0 auto;
  padding-bottom: 80px;
}

.article-wrap h2 {
  margin: 32px 0 12px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
}

.article-wrap h2:first-child {
  margin-top: 0;
}

.article-wrap p {
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 16px;
}

.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 72px 0 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.footer-word {
  font-family: var(--serif);
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.8;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: rgba(250, 247, 241, 0.7);
  font-size: 14px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-copy {
  margin: 36px 0 0;
  font-size: 12px;
  color: rgba(250, 247, 241, 0.45);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--burgundy);
  transform: translateY(100%);
  pointer-events: none;
}

.page-transition.is-on {
  animation: cover 0.7s var(--ease);
}

@keyframes cover {
  0% {
    transform: translateY(100%);
  }
  45% {
    transform: none;
  }
  100% {
    transform: translateY(-100%);
  }
}

@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .about-grid,
  .presence-layout,
  .process-layout,
  .team,
  .footer-grid,
  .about-sections,
  .about-sections article {
    grid-template-columns: 1fr;
  }

  .metrics,
  .why-grid,
  .market-grid,
  .story-grid,
  .insight-grid,
  .req-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-row {
    grid-template-columns: 64px 1fr;
  }

  .solution-row .mark {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-end .btn {
    display: none;
  }

  .metrics,
  .why-grid,
  .market-grid,
  .story-grid,
  .insight-grid,
  .form,
  .req-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .about-visual,
  .about-visual img {
    min-height: 280px;
  }

  .hero {
    min-height: calc(100svh - 72px);
    align-items: center;
  }

  .display {
    font-size: clamp(44px, 14vw, 72px);
  }

  .about-title {
    font-size: clamp(36px, 11vw, 52px);
  }
}

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

  .reveal,
  .marquee-track,
  .page-transition,
  .solution-row,
  .card {
    animation: none !important;
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
