:root {
  --burgundy: #66001d;
  --burgundy-deep: #4a0015;
  --burgundy-dark: #2a000e;
  --gold: #c49932;
  --gold-soft: #d4b05a;
  --charcoal: #212121;
  --ink: #2a2624;
  --muted: #5e5752;
  --cream: #f6f1e8;
  --paper: #fbf8f3;
  --white: #ffffff;
  --line: rgba(196, 153, 50, 0.32);
  --line-soft: rgba(33, 33, 33, 0.08);
  --display: "Plus Jakarta Sans", "Manrope", sans-serif;
  --body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: clip;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--burgundy-dark);
  padding: 0.7rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 3rem;
}

.section-head h2,
.about__intro h2,
.capabilities__panel h2,
.partnerships__intro h2,
.contact h2 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  color: var(--burgundy);
}

.section-head--light h2,
.contact h2 {
  color: var(--white);
}

.lede-light {
  color: rgba(255, 255, 255, 0.74);
  max-width: 36rem;
}

.fineprint {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.45s var(--ease);
}

.btn::after {
  content: "→";
  transition: transform 0.35s var(--ease);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(4px);
}

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

.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 66%
  );
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}

.btn--gold:hover::before,
.btn--gold:focus-visible::before {
  transform: translateX(130%);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(196, 153, 50, 0.28);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: transparent;
}

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

.btn--full {
  width: 100%;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(251, 248, 243, 0.94);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px rgba(33, 33, 33, 0.06);
  backdrop-filter: blur(16px);
}

.nav__bar {
  width: min(1280px, calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.nav.is-scrolled .nav__brand,
.nav.menu-open .nav__brand {
  color: var(--burgundy);
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__wordmark span:first-child {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav__wordmark span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  opacity: 0.78;
}

.nav__links {
  display: none;
  gap: 1.15rem;
}

.nav__links a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav.is-scrolled .nav__links a {
  color: var(--charcoal);
}

.nav__links a:hover,
.nav__links a:focus-visible,
.nav__links a.is-active {
  color: var(--gold);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  position: relative;
}

.nav.is-scrolled .nav__toggle,
.nav.menu-open .nav__toggle {
  border-color: rgba(102, 0, 29, 0.2);
}

.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  position: absolute;
  left: 0.6rem;
  width: 1.25rem;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav.is-scrolled .nav__toggle-bars,
.nav.is-scrolled .nav__toggle-bars::before,
.nav.is-scrolled .nav__toggle-bars::after,
.nav.menu-open .nav__toggle-bars,
.nav.menu-open .nav__toggle-bars::before,
.nav.menu-open .nav__toggle-bars::after {
  background: var(--burgundy);
}

.nav__toggle-bars {
  top: 50%;
}

.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
}

.nav__toggle-bars::before {
  top: -6px;
}

.nav__toggle-bars::after {
  top: 6px;
}

.nav.menu-open .nav__toggle-bars {
  background: transparent;
}

.nav.menu-open .nav__toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav.menu-open .nav__toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav.menu-open {
  background: var(--burgundy-dark);
  border-bottom-color: rgba(196, 153, 50, 0.18);
}

.nav.menu-open .nav__brand {
  color: var(--white);
}

.nav.menu-open .nav__toggle-bars,
.nav.menu-open .nav__toggle-bars::before,
.nav.menu-open .nav__toggle-bars::after {
  background: var(--white);
}

.nav__mobile {
  background: var(--burgundy-dark);
  padding: 0.5rem 1.25rem 1.5rem;
}

.nav__mobile[hidden] {
  display: none;
}

.nav__mobile nav {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
}

.nav__mobile a {
  color: var(--white);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 1.2rem;
}

.nav.is-scrolled:not(.menu-open) {
  background: rgba(251, 248, 243, 0.94);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  background: var(--burgundy-dark);
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.08);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 0, 8, 0.92) 0%, rgba(26, 0, 8, 0.72) 42%, rgba(26, 0, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(26, 0, 8, 0.28) 0%, rgba(26, 0, 8, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 6.5rem;
}

.hero__title {
  font-size: clamp(3rem, 11vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__word {
  display: block;
  animation: rise 1.15s var(--ease) both;
}

.hero__line:nth-child(2) .hero__word {
  animation-delay: 0.14s;
}

.hero__tag {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__tag::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 1px;
  margin: 1.1rem 0 1.3rem;
  background: var(--gold);
  transform-origin: left;
  animation: growLine 1s var(--ease) 0.55s both;
}

.hero__lede {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__grain,
.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grain {
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}

.hero__orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  background: radial-gradient(circle, rgba(196, 153, 50, 0.34), transparent 68%);
  animation: orbFloat 16s ease-in-out infinite alternate;
}

.hero__orbs span:nth-child(1) {
  width: 18rem;
  height: 18rem;
  left: 8%;
  top: 18%;
}

.hero__orbs span:nth-child(2) {
  width: 14rem;
  height: 14rem;
  right: 12%;
  bottom: 10%;
  animation-delay: -4s;
  animation-duration: 20s;
}

.hero__orbs span:nth-child(3) {
  width: 10rem;
  height: 10rem;
  left: 42%;
  top: 8%;
  animation-delay: -8s;
  opacity: 0.7;
}

.hero__scroll {
  position: absolute;
  left: 1rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-track {
  position: relative;
  width: 1px;
  height: 2.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.hero__scroll-track span {
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollPulse 1.8s var(--ease) infinite;
}

.highlights,
.about,
.leadership,
.products,
.markets,
.partnerships,
.timeline {
  padding: 5.5rem 0;
}

.highlights,
.markets,
.timeline {
  background: var(--cream);
}

.stats {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.stat {
  position: relative;
  padding-bottom: 0.4rem;
}

.stat::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.2s;
}

.stat.is-inview::after,
.stat.reveal.is-inview::after {
  transform: scaleX(1);
}

.stat__value {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat__label {
  margin: 0.7rem 0 0;
  max-width: 16rem;
  color: var(--muted);
}

.about__grid {
  display: grid;
  gap: 2.8rem;
}

.about__intro p,
.capabilities__panel p,
.partnerships__intro p {
  color: var(--muted);
}

.spec-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.spec-list li {
  display: flex;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 600;
  transition: padding-left 0.4s var(--ease), color 0.4s var(--ease);
}

.spec-list li:hover {
  padding-left: 0.45rem;
  color: var(--burgundy);
}

.spec-list span {
  color: var(--gold);
  min-width: 1.8rem;
  font-family: var(--display);
  font-size: 0.82rem;
}

.philosophy {
  padding: 5.5rem 0;
  background: var(--burgundy);
  color: var(--white);
}

.pillars {
  display: grid;
  gap: 2rem;
}

.pillar {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(196, 153, 50, 0.35);
  transition: transform 0.5s var(--ease);
}

.pillar:hover {
  transform: translateY(-6px);
}

.pillar h3 {
  color: var(--gold);
  font-size: 1.5rem;
}

.pillar p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.leaders {
  display: grid;
  gap: 2rem;
}

.leader {
  padding: 0 0 0 1.2rem;
  border-left: 1px solid var(--gold);
  transition: transform 0.5s var(--ease), padding-left 0.5s var(--ease);
}

.leader:hover {
  transform: translateX(6px);
  padding-left: 1.5rem;
}

.leader__role {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.leader h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--burgundy);
}

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

.capabilities {
  display: grid;
  background: var(--burgundy-dark);
}

.capabilities__visual {
  min-height: 22rem;
  overflow: hidden;
}

.capabilities__visual img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}

.capabilities__visual.is-inview img {
  transform: scale(1);
}

.capabilities__panel {
  padding: 3.2rem 1.25rem 4rem;
  color: var(--white);
}

.capabilities__panel h2 {
  color: var(--white);
}

.capabilities__panel p {
  color: rgba(255, 255, 255, 0.72);
}

.capability-specs {
  list-style: none;
  margin-top: 2rem;
}

.capability-specs li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(196, 153, 50, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.product {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 4.5rem;
}

.product__media {
  overflow: hidden;
  background: #efe8db;
  border: 1px solid var(--line-soft);
  position: relative;
}

.product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  transform: translateX(-140%);
  transition: transform 0.9s var(--ease);
  pointer-events: none;
}

.product:hover .product__media::after,
.product:focus-within .product__media::after {
  transform: translateX(140%);
}

.product__media img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: contain;
  padding: 1.2rem;
  transition: transform 0.7s var(--ease);
}

.product:hover .product__media img,
.product:focus-within .product__media img {
  transform: scale(1.045) translateY(-4px);
}

.product__range {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product h3,
.typo-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--burgundy);
}

.product__comp {
  color: var(--burgundy);
  font-weight: 700;
}

.product ul,
.typo-card ul {
  list-style: none;
  color: var(--muted);
}

.product li,
.typo-card li {
  padding: 0.35rem 0 0.35rem 1rem;
  position: relative;
}

.product li::before,
.typo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 1px;
  background: var(--gold);
}

.product-typo {
  display: grid;
  gap: 1.2rem;
}

.typo-card {
  padding: 1.8rem 1.4rem;
  background: var(--white);
  border-left: 2px solid var(--burgundy);
  box-shadow: 0 16px 40px rgba(33, 33, 33, 0.04);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.typo-card:hover,
.typo-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(102, 0, 29, 0.1);
}

.presence {
  position: relative;
  padding: 6rem 0 5rem;
  background: var(--burgundy-dark);
  color: var(--white);
  overflow: hidden;
}

.presence__map {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.presence__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 0, 8, 0.55), transparent 28%, transparent 72%, rgba(26, 0, 8, 0.5)),
    linear-gradient(90deg, rgba(26, 0, 8, 0.35), transparent 40%, transparent 70%, rgba(26, 0, 8, 0.28));
}

.presence__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  clip-path: inset(8% 8% 8% 8%);
}

.presence.is-inview .presence__map img {
  animation: mapReveal 1.6s var(--ease) both;
}

.presence__content {
  position: relative;
  z-index: 1;
}

.regions {
  display: grid;
  gap: 2rem;
}

.region {
  transition: transform 0.5s var(--ease);
}

.region:hover {
  transform: translateY(-8px);
}

.region h3 {
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(196, 153, 50, 0.35);
  color: var(--gold);
  font-size: 1.15rem;
}

.region ul {
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.region li + li {
  margin-top: 0.35rem;
}

.market-list {
  display: grid;
  gap: 0;
}

.market {
  display: grid;
  gap: 0.6rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.45s var(--ease);
}

.market::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}

.market:hover,
.market:focus-within {
  padding-left: 1rem;
}

.market:hover::before,
.market:focus-within::before {
  transform: scaleY(1);
}

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

.market h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--burgundy);
}

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

.partnerships__intro {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.models {
  list-style: none;
}

.model {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-soft);
  transition: transform 0.45s var(--ease);
}

.model:hover {
  transform: translateX(8px);
}

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

.model__num {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
}

.model h3 {
  font-size: 1.35rem;
  color: var(--burgundy);
}

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

.milestones {
  list-style: none;
  position: relative;
}

.milestones::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 1px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s var(--ease);
}

.milestones.is-drawn::before {
  transform: scaleY(1);
}

.milestone {
  position: relative;
  padding: 0 0 2.2rem 2rem;
}

.milestone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid var(--gold);
  background: var(--cream);
  border-radius: 50%;
}

.milestone__date {
  margin: 0 0 0.35rem;
  color: var(--burgundy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.milestone h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact {
  display: grid;
}

.contact__info {
  padding: 4.5rem 1.25rem;
  background: var(--burgundy);
  color: var(--white);
}

.contact__info p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  margin: 2.4rem 0 0;
}

.contact-list div + div {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(196, 153, 50, 0.25);
}

.contact-list dt {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-list dd {
  margin: 0;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold);
}

.contact__form-wrap {
  padding: 4.5rem 1.25rem;
  background: var(--cream);
}

.enquiry {
  position: relative;
  max-width: 34rem;
}

.enquiry h3 {
  margin-bottom: 1.4rem;
  color: var(--burgundy);
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--burgundy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(102, 0, 29, 0.16);
  background: var(--white);
  color: var(--charcoal);
  padding: 0.85rem 0.9rem;
  border-radius: 0;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(102, 0, 29, 0.08);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--burgundy);
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--burgundy);
  font-weight: 700;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: wait;
}

.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.2rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__name {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer__tag {
  margin: 0.2rem 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.footer__meta {
  margin: 0;
  font-size: 0.78rem;
}

.js .reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(28px);
}

.js .hero .reveal,
.reveal.is-inview {
  opacity: 1;
  transform: none;
}

.reveal {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero .reveal {
  animation: rise 1.1s var(--ease) both;
}

.delay-1 { animation-delay: 0.12s; transition-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; transition-delay: 0.22s; }
.delay-3 { animation-delay: 0.32s; transition-delay: 0.32s; }
.delay-4 { animation-delay: 0.42s; transition-delay: 0.42s; }

.reveal-clip img {
  clip-path: inset(12% 12% 12% 12%);
  transition: clip-path 1.2s var(--ease), transform 1.4s var(--ease);
}

.reveal-clip.is-inview img {
  clip-path: inset(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1.2%, 0); }
}

@keyframes mapReveal {
  from {
    opacity: 0;
    transform: scale(1.12);
    clip-path: inset(18% 18% 18% 18%);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
    clip-path: inset(0);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.js .reveal-left:not(.is-inview),
.js .reveal-right:not(.is-inview) {
  opacity: 0;
}

.js .reveal-left:not(.is-inview) {
  transform: translateX(-56px);
}

.js .reveal-right:not(.is-inview) {
  transform: translateX(56px);
}

.reveal-left,
.reveal-right {
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-left.is-inview,
.reveal-right.is-inview {
  opacity: 1;
  transform: none;
}

.js .reveal-stagger > *:not(.is-inview) {
  opacity: 0;
  transform: translateY(32px);
}

.reveal-stagger > * {
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}

.reveal-stagger > *.is-inview {
  opacity: 1;
  transform: none;
}

@keyframes growLine {
  from { width: 0; opacity: 0; }
  to { width: 4.5rem; opacity: 1; }
}

@keyframes scrollPulse {
  0% { transform: translateY(-110%); }
  45% { transform: translateY(0); }
  100% { transform: translateY(110%); }
}

@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8%, -12%, 0) scale(1.12); }
}

@keyframes grainShift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(1%, -2%, 0); }
  75% { transform: translate3d(-1%, -1%, 0); }
}

@media (min-width: 768px) {
  .wrap {
    width: min(1180px, calc(100% - 3.5rem));
  }

  .stats,
  .pillars,
  .leaders,
  .product-typo,
  .regions {
    grid-template-columns: 1fr 1fr;
  }

  .product,
  .product--reverse,
  .about__grid,
  .contact {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .product--reverse .product__media {
    order: 2;
  }

  .market {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: baseline;
    gap: 2rem;
  }

  .capabilities {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 42rem;
  }

  .capabilities__visual,
  .capabilities__visual img {
    min-height: 100%;
    height: 100%;
  }

  .capabilities__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
  }

  .contact__info,
  .contact__form-wrap {
    padding: 5.5rem 3.2rem;
  }

  .hero__scroll {
    left: 2rem;
  }

  .milestones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 2rem;
  }

  .milestones::before {
    display: none;
  }

  .milestone {
    padding: 0 0 0 1.6rem;
    border-left: 1px solid var(--gold);
  }

  .milestone::before {
    left: -0.45rem;
  }
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    flex-wrap: nowrap;
  }

  .nav__links a {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .milestones {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    position: relative;
  }

  .milestones::before {
    display: block;
    left: 0;
    right: 0;
    top: 0.7rem;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .milestones.is-drawn::before {
    transform: scaleX(1);
  }

  .milestone {
    padding: 2rem 0.4rem 0;
    border-left: 0;
  }

  .milestone::before {
    left: 0;
    top: 0.38rem;
  }

  .nav__cta {
    display: inline-flex;
    min-height: 2.6rem;
    padding: 0.45rem 0.95rem;
    font-size: 0.72rem;
  }

  .nav.is-scrolled .nav__cta {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
  }

  .nav.is-scrolled .nav__cta:hover,
  .nav.is-scrolled .nav__cta:focus-visible {
    background: var(--gold);
    color: var(--burgundy-dark);
    border-color: var(--gold);
  }

  .nav__toggle,
  .nav__mobile {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .regions,
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .regions {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__inner {
    padding: 10rem 0 7rem;
  }
}

@media (min-width: 1280px) {
  .hero__title {
    max-width: 14ch;
  }
}

@media (hover: none) {
  .spec-list li:hover,
  .pillar:hover,
  .leader:hover,
  .market:hover,
  .model:hover,
  .region:hover {
    transform: none;
    padding-left: 0;
  }

  .leader:hover {
    padding-left: 1.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__img,
  .presence__map img,
  .capabilities__visual img {
    transform: none;
  }

  .hero__word,
  .hero__tag::after,
  .hero__scroll-track span,
  .hero__grain,
  .hero__orbs span {
    animation: none !important;
  }

  .js .reveal-left,
  .js .reveal-right,
  .js .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
