.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  padding-block: calc(var(--header-height) + clamp(2.5rem, 5vw, 5rem)) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 82% 22%, rgb(179 138 74 / 0.13), transparent 24rem),
    linear-gradient(125deg, var(--ink-deep), var(--heritage-teal) 58%, #0b2b26);
}

.hero__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-deep);
  box-shadow: 0 2.4rem 6rem rgb(1 12 10 / 0.38);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shutter {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  visibility: visible;
  overflow: hidden;
  pointer-events: none;
  animation: shutter-failsafe 0.01s 4s forwards;
}

.hero-shutter__panel {
  flex: 1;
  height: 100%;
  border-right: 1px solid rgb(179 138 74 / 0.36);
  background:
    linear-gradient(100deg, rgb(255 255 255 / 0.025), transparent 28%, rgb(0 0 0 / 0.14)),
    radial-gradient(circle at 50% 0%, rgb(179 138 74 / 0.11), transparent 38%),
    #09231f;
  box-shadow: inset -16px 0 28px rgb(0 0 0 / 0.14);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 760ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.hero-shutter__panel:nth-child(2) {
  transition-delay: 70ms;
}

.hero-shutter__panel:nth-child(3) {
  transition-delay: 140ms;
}

.hero-shutter__panel:nth-child(4) {
  border-right: 0;
  transition-delay: 210ms;
}

.hero-shutter.is-open .hero-shutter__panel {
  transform: scaleY(0);
}

.hero-shutter.is-finished {
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero-shutter {
    display: none;
    animation: none;
  }

  .hero-shutter__panel {
    transition: none;
  }
}

@keyframes shutter-failsafe {
  to {
    visibility: hidden;
  }
}


.offer-section {
  background: var(--ink-deep);
}

.offer-section__intro,
.path-section__heading {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
}

.offer-section__intro h2,
.offer-section__intro p,
.path-section__heading h2,
.path-section__heading p {
  margin-bottom: 0;
}

.offer-section__intro p,
.path-section__heading p {
  padding-bottom: 0.45rem;
  font-size: 1.08rem;
}


.path-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 50%, rgb(242 233 218 / 0.025) 50%),
    var(--stone);
}

.trade-paths {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  grid-template-columns: 1.15fr 0.85fr;
}

.trade-path {
  display: grid;
  min-height: 420px;
  align-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--ink);
  transition: background 350ms var(--ease), transform 350ms var(--ease);
}

.trade-path--buyer {
  background:
    radial-gradient(circle at 14% 100%, rgb(179 138 74 / 0.18), transparent 22rem),
    var(--heritage-teal);
}

.trade-path--supplier {
  background: var(--ink-deep);
}

.trade-path__type {
  margin-bottom: 1.5rem;
  color: var(--brass-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trade-path h3 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
}

.trade-path > p {
  max-width: 42ch;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--brass);
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease;
}

.text-link:hover {
  border-color: var(--brass-light);
  color: var(--brass-light);
}

.corridor-section {
  background: var(--heritage-teal);
}

.corridor-section__layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
}

.corridor-section__copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.trade-corridor {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: corridor;
  list-style: none;
}

.trade-corridor::before {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 1.05rem;
  width: 1px;
  background: linear-gradient(var(--brass), var(--line));
  content: "";
}

.trade-corridor li {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 1.4rem 1rem 1.4rem 4.5rem;
  border-bottom: 1px solid var(--line-soft);
  counter-increment: corridor;
}

.trade-corridor li::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  display: grid;
  width: 2.15rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--brass);
  background: var(--heritage-teal);
  color: var(--brass-light);
  content: counter(corridor, decimal-leading-zero);
  font-size: 0.66rem;
  translate: 0 -50%;
}

.trade-corridor strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 450;
}

.trade-corridor span {
  color: var(--cream-soft);
}

.cta-panel__lead {
  margin-bottom: 0.75rem;
  color: var(--brass-light);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-intro {
  position: relative;
  display: grid;
  min-height: min(680px, 72dvh);
  align-items: end;
  overflow: hidden;
  padding-block: calc(var(--header-height) + 5rem) 5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49.9%, rgb(179 138 74 / 0.1) 50%, transparent 50.1%),
    radial-gradient(circle at 50% 14%, rgb(179 138 74 / 0.13), transparent 25rem),
    var(--stone);
}

.page-intro__inner {
  display: grid;
  align-items: end;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.page-intro h1 {
  margin-bottom: 0;
}

.page-intro p:last-child {
  margin-bottom: 0.55rem;
}

.statement-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
}

.statement-grid p {
  padding-top: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  line-height: 1.35;
}

.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.services-head h2,
.services-head p {
  margin-bottom: 0;
}

.service-ledger-section {
  background: var(--ink-deep);
}

.service-ledger__intro {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
}

.service-ledger__intro h2,
.service-ledger__intro p {
  margin-bottom: 0;
}

.service-ledger {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-ledger article {
  min-height: 260px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgb(179 138 74 / 0.07), transparent 56%);
}

.service-ledger article:nth-child(2),
.service-ledger article:nth-child(3) {
  background: var(--heritage-teal);
}

.service-ledger article p {
  margin-bottom: 0;
}

.trade-paths--compact .trade-path {
  min-height: 350px;
}

.trade-paths--compact .trade-path h3 {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
}

.simple-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-panel {
  padding-block: clamp(5rem, 10vw, 10rem);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 0%, rgb(179 138 74 / 0.17), transparent 25rem),
    var(--stone-raised);
}

.cta-panel__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.cta-panel h2 {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (width <= 860px) {
  .hero {
    min-height: auto;
    padding-block: calc(var(--header-height) + 2.5rem) 3.5rem;
  }

  .offer-section__intro,
  .path-section__heading,
  .service-ledger__intro,
  .service-ledger,
  .trade-paths,
  .corridor-section__layout {
    grid-template-columns: 1fr;
  }


  .trade-paths {
    grid-template-columns: 1fr;
  }

  .trade-path {
    min-height: 360px;
  }

  .service-ledger article {
    min-height: 220px;
  }

  .corridor-section__copy {
    position: static;
  }

  .page-intro {
    min-height: 62dvh;
  }

  .page-intro__inner,
  .statement-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-head,
  .cta-panel__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-copy {
    position: static;
  }
}

@media (width <= 540px) {
  .offer-section__intro,
  .path-section__heading {
    gap: 1rem;
  }

  .trade-path {
    min-height: 320px;
  }

  .page-intro {
    padding-bottom: 3.5rem;
  }
}

/* Cinematic Home */
.cinematic-hero {
  height: 210dvh;
  min-height: 0;
  overflow: clip;
  padding: 0;
}

.cinematic-hero__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgb(179 138 74 / 0.18), transparent 32rem),
    linear-gradient(140deg, #03100e, var(--heritage-teal) 62%, #0b2c27);
}

.cinematic-hero__type {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  color: var(--warm-alabaster);
  pointer-events: none;
}

.cinematic-hero__word {
  position: absolute;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 17rem);
  font-weight: 520;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-transform: uppercase;
  will-change: transform, opacity;
}

.cinematic-hero__word--true {
  top: 12%;
  left: 3.5%;
}

.cinematic-hero__word--bridge {
  top: 42%;
  right: 2.5%;
}

.cinematic-hero__media {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 2;
  width: 42vw;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-deep);
  box-shadow: 0 2rem 7rem rgb(1 12 10 / 0.52);
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  will-change: transform;
}

.cinematic-hero__copy {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 4;
  display: grid;
  width: var(--container);
  align-items: end;
  gap: 2rem;
  padding-block: 1.6rem 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  transform: translateX(-50%);
}

.cinematic-hero__copy::before {
  position: absolute;
  inset: -2rem -50vw 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgb(3 16 14 / 0.86) 42%, rgb(3 16 14 / 0.97));
  content: "";
  pointer-events: none;
}

.cinematic-hero__copy .page-label {
  margin-bottom: 0.55rem;
}

.cinematic-hero__copy h1 {
  max-width: 17ch;
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 0.98;
}

.cinematic-hero__copy p:last-child {
  margin-bottom: 0;
  color: var(--cream);
}

.cinematic-hero__actions {
  display: flex;
  gap: 0.75rem;
}

.coordination-ledger {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.coordination-ledger li {
  position: relative;
  display: grid;
  min-height: 185px;
  align-items: center;
  gap: clamp(2rem, 8vw, 9rem);
  overflow: hidden;
  padding: 2rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  transition: background 500ms var(--ease), padding 500ms var(--ease);
}

.coordination-ledger li::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 50%, rgb(179 138 74 / 0.2), transparent 25rem),
    var(--stone);
  content: "";
  opacity: 0;
  transform: scaleX(0.96);
  transform-origin: left;
  transition: opacity 500ms var(--ease), transform 700ms var(--ease);
}

.coordination-ledger h3,
.coordination-ledger p {
  margin-bottom: 0;
}

.coordination-ledger h3 {
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
  letter-spacing: -0.05em;
}

.coordination-ledger p {
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

@media (hover: hover) and (pointer: fine) {
  .coordination-ledger li:hover {
    padding-inline: clamp(1.6rem, 4vw, 3.5rem);
  }

  .coordination-ledger li:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }
}

@supports (animation-timeline: scroll()) {
  .cinematic-hero__media {
    animation: cinematic-aperture-expand linear both;
    animation-range: 0 115dvh;
    animation-timeline: scroll(root block);
  }

  .cinematic-hero__word--true {
    animation: cinematic-true-depart linear both;
    animation-range: 0 105dvh;
    animation-timeline: scroll(root block);
  }

  .cinematic-hero__word--bridge {
    animation: cinematic-bridge-depart linear both;
    animation-range: 0 105dvh;
    animation-timeline: scroll(root block);
  }
}

@keyframes cinematic-aperture-expand {
  from {
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    transform: translate(-50%, -50%) scale(2.18);
  }
}

@keyframes cinematic-true-depart {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }

  to {
    opacity: 0.08;
    transform: translate(-9vw, -8dvh);
  }
}

@keyframes cinematic-bridge-depart {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }

  to {
    opacity: 0.08;
    transform: translate(9vw, 8dvh);
  }
}

@media (width <= 860px) {
  .cinematic-hero {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .cinematic-hero__sticky {
    position: relative;
    height: auto;
    min-height: 100dvh;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 2rem);
  }

  .cinematic-hero__type {
    position: relative;
    height: clamp(150px, 43vw, 230px);
  }

  .cinematic-hero__word {
    font-size: clamp(5.2rem, 23vw, 9rem);
    line-height: 0.76;
    animation: none;
  }

  .cinematic-hero__word--true {
    top: 0;
    left: 0.6rem;
  }

  .cinematic-hero__word--bridge {
    top: 20vw;
    right: 0.6rem;
  }

  .cinematic-hero__media {
    position: relative;
    top: auto;
    left: auto;
    width: var(--container);
    margin-inline: auto;
    animation: none;
    transform: none;
  }

  .cinematic-hero__copy {
    position: relative;
    bottom: auto;
    left: auto;
    width: var(--container);
    gap: 1.5rem;
    padding-block: 2.2rem 4rem;
    grid-template-columns: 1fr;
    transform: none;
  }

  .cinematic-hero__copy::before {
    inset: -3rem -2rem 0;
  }

  .cinematic-hero__copy h1 {
    max-width: 15ch;
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .cinematic-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .coordination-ledger li {
    min-height: 0;
    gap: 0.75rem;
    padding-block: 2.2rem;
    grid-template-columns: 1fr;
  }

  .coordination-ledger h3 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-hero {
    height: auto;
    min-height: 100dvh;
  }

  .cinematic-hero__sticky {
    position: relative;
  }

  .cinematic-hero__media,
  .cinematic-hero__word {
    animation: none;
  }
}
